diff options
author | Abyss777 <abyss@fox5.ru> | 2016-06-13 16:55:01 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-06-13 16:55:01 +0500 |
commit | 3b5b60dace5ad75fe92bee5adef0c7e4c61b7757 (patch) | |
tree | 355cc0cd0d622cbbb7dbada1f5d04ff010367301 /src/org/traccar/geofence/GeofenceGeometry.java | |
parent | a5cdddd4a304f75645a2b89b7e834e5750466c5b (diff) | |
download | trackermap-server-3b5b60dace5ad75fe92bee5adef0c7e4c61b7757.tar.gz trackermap-server-3b5b60dace5ad75fe92bee5adef0c7e4c61b7757.tar.bz2 trackermap-server-3b5b60dace5ad75fe92bee5adef0c7e4c61b7757.zip |
Style fixes
Diffstat (limited to 'src/org/traccar/geofence/GeofenceGeometry.java')
-rw-r--r-- | src/org/traccar/geofence/GeofenceGeometry.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/traccar/geofence/GeofenceGeometry.java b/src/org/traccar/geofence/GeofenceGeometry.java index c8f042413..83656a029 100644 --- a/src/org/traccar/geofence/GeofenceGeometry.java +++ b/src/org/traccar/geofence/GeofenceGeometry.java @@ -6,8 +6,8 @@ public abstract class GeofenceGeometry { public abstract boolean containsPoint(double latitude, double longitude); - public abstract String toWKT(); + public abstract String toWkt(); - public abstract void fromWKT(String wkt) throws ParseException; + public abstract void fromWkt(String wkt) throws ParseException; } |