Skip to content

Commit

Permalink
Regenerated from new patched source
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornharrtell committed May 9, 2024
1 parent a387d1e commit 8788a0f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default [
'brace-style': ['error', '1tbs'],
'block-spacing': ['error', 'always'],
'object-curly-newline': ['error', { consistent: true }],
'prefer-const': 0,
'prefer-const': 1,
'no-mixed-operators': 0,
'no-empty': 0,
'no-undef': 0,
Expand Down
2 changes: 1 addition & 1 deletion src/org/locationtech/jts/algorithm/RobustDeterminant.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default class RobustDeterminant {
if (0.0 < y1) {
if (0.0 < y2) {
if (y1 <= y2) {

;
} else {
sign = -sign
swap = x1
Expand Down
2 changes: 1 addition & 1 deletion src/org/locationtech/jts/index/strtree/STRtree.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ItemBoundable from './ItemBoundable.js'
import PriorityQueue from '../../util/PriorityQueue.js'
import PriorityQueue from '../../../../../java/util/PriorityQueue.js'
import hasInterface from '../../../../../hasInterface.js'
import Double from '../../../../../java/lang/Double.js'
import Serializable from '../../../../../java/io/Serializable.js'
Expand Down
2 changes: 1 addition & 1 deletion src/org/locationtech/jts/operation/linemerge/LineMerger.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export default class LineMerger {
this.addLineString(component)

}

;
} else if (hasInterface(arguments[0], Collection)) {
const geometries = arguments[0]
this._mergedLineStrings = null
Expand Down

0 comments on commit 8788a0f

Please sign in to comment.