From ee404dd2b831821129f7553cab8946139dff8a7e Mon Sep 17 00:00:00 2001 From: Taylor Smock Date: Tue, 29 Oct 2019 14:05:09 -0600 Subject: [PATCH] Indicate that a function has been added to upstream JOSM, and should be removed in the future Signed-off-by: Taylor Smock --- .../josm/plugins/mapwithai/backend/MapWithAIDataUtils.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/openstreetmap/josm/plugins/mapwithai/backend/MapWithAIDataUtils.java b/src/main/java/org/openstreetmap/josm/plugins/mapwithai/backend/MapWithAIDataUtils.java index 1be6f27..9372aec 100644 --- a/src/main/java/org/openstreetmap/josm/plugins/mapwithai/backend/MapWithAIDataUtils.java +++ b/src/main/java/org/openstreetmap/josm/plugins/mapwithai/backend/MapWithAIDataUtils.java @@ -248,6 +248,7 @@ public final class MapWithAIDataUtils { .collect(Collectors.toList()); } + // TODO replace with {@link BBox.bboxesAreFunctionallyEqual} when version bumped to >r15483 private static boolean bboxesAreFunctionallyEqual(BBox bbox1, BBox bbox2, Double maxDifference) { if (maxDifference == null) { maxDifference = LatLon.MAX_SERVER_PRECISION;