Remove lint

This commit is contained in:
Andreas Hocevar
2021-06-28 18:10:51 +02:00
parent b5bb9382e2
commit 79f5f46d27
135 changed files with 1040 additions and 2374 deletions
+9 -3
View File
@@ -315,7 +315,9 @@ class WkbReader {
case WKBGeometryType.POLYGON:
case WKBGeometryType.TRIANGLE:
return new Polygon(
/** @type {Array<Array<import('../coordinate.js').Coordinate>>} */ (result),
/** @type {Array<Array<import('../coordinate.js').Coordinate>>} */ (
result
),
this.layout_
);
@@ -327,7 +329,9 @@ class WkbReader {
case WKBGeometryType.MULTI_LINE_STRING:
return new MultiLineString(
/** @type {Array<Array<import('../coordinate.js').Coordinate>>} */ (result),
/** @type {Array<Array<import('../coordinate.js').Coordinate>>} */ (
result
),
this.layout_
);
@@ -335,7 +339,9 @@ class WkbReader {
case WKBGeometryType.POLYHEDRAL_SURFACE:
case WKBGeometryType.TIN:
return new MultiPolygon(
/** @type {Array<Array<Array<import('../coordinate.js').Coordinate>>>} */ (result),
/** @type {Array<Array<Array<import('../coordinate.js').Coordinate>>>} */ (
result
),
this.layout_
);