Skip to content

Commit b34f1d8

Browse files
committed
removed unnecessary assignemtn
1 parent 08b2d84 commit b34f1d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PolylineAlgorithm/PolylineDecoder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public IEnumerable<Coordinate> Decode(Polyline polyline) {
3535
ReadOnlySequence<char>.Enumerator enumerator = polyline.GetEnumerator();
3636

3737
int position;
38-
ReadOnlyMemory<char> sequence = enumerator.Current;
38+
ReadOnlyMemory<char> sequence;
3939

4040
while (enumerator.MoveNext()) {
4141
position = 0;

0 commit comments

Comments
 (0)