diff --git a/ors-engine/src/main/java/org/heigit/ors/routing/RoutingProfile.java b/ors-engine/src/main/java/org/heigit/ors/routing/RoutingProfile.java index 6fc592c856..003c344107 100644 --- a/ors-engine/src/main/java/org/heigit/ors/routing/RoutingProfile.java +++ b/ors-engine/src/main/java/org/heigit/ors/routing/RoutingProfile.java @@ -377,10 +377,6 @@ public ORSGraphHopper getGraphhopper() { return mGraphHopper; } - public BBox getBounds() { - return mGraphHopper.getGraphHopperStorage().getBounds(); - } - public StorableProperties getGraphProperties() { return mGraphHopper.getGraphHopperStorage().getProperties(); } @@ -389,14 +385,6 @@ public ProfileProperties getProfileConfiguration() { return profileProperties; } - public Integer[] getPreferences() { - return mRoutePrefs; - } - - public boolean isCHEnabled() { - return mGraphHopper != null && mGraphHopper.getCHPreparationHandler().isEnabled(); - } - public void close() { mGraphHopper.close(); }