Skip to content

Commit 2799f79

Browse files
committed
Fix regression
1 parent 72ddb96 commit 2799f79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NetTopologySuite.IO.Oracle/OracleGeometryWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ private static int ProcessMultiLineString(MultiLineString multiLineString, int d
282282
for (int i = 0; i < cnt; i++)
283283
{
284284
var line = (LineString)multiLineString.GetGeometryN(i);
285-
pos += ProcessLinear(line, dimension, elemInfoList, ordinateList, pos);
285+
pos = ProcessLinear(line, dimension, elemInfoList, ordinateList, pos);
286286
}
287287

288288
return pos;

0 commit comments

Comments
 (0)