aboutsummaryrefslogtreecommitdiffstats
path: root/main/src
diff options
context:
space:
mode:
authorTorsten Keil <github@torsten-keil.net>2012-01-17 20:40:32 +0100
committerTorsten Keil <github@torsten-keil.net>2012-01-17 20:40:32 +0100
commit16732e6ebf85c47fdb0bd3efdbd16d2921742c20 (patch)
tree9b1ba90fda7d28e174975e244a6eb48bbacb5c76 /main/src
parente7ae5bf5173cf9eaeb6346ac365262514e44dedf (diff)
downloadcgeo-16732e6ebf85c47fdb0bd3efdbd16d2921742c20.zip
cgeo-16732e6ebf85c47fdb0bd3efdbd16d2921742c20.tar.gz
cgeo-16732e6ebf85c47fdb0bd3efdbd16d2921742c20.tar.bz2
Removed deprecated methods.
Diffstat (limited to 'main/src')
-rw-r--r--main/src/cgeo/geocaching/files/GPXImporter.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/main/src/cgeo/geocaching/files/GPXImporter.java b/main/src/cgeo/geocaching/files/GPXImporter.java
index 6e11679..a500fe7 100644
--- a/main/src/cgeo/geocaching/files/GPXImporter.java
+++ b/main/src/cgeo/geocaching/files/GPXImporter.java
@@ -394,22 +394,6 @@ public class GPXImporter {
};
/**
- * @param name
- * the gpx file name
- * @return the expected file name of the waypoints file
- *
- * @deprecated use {@link #getWaypointsFileNameForGpxFile(File)} instead
- */
- @Deprecated
- static String getWaypointsFileNameForGpxFileName(String name) {
- if (StringUtils.endsWithIgnoreCase(name, GPX_FILE_EXTENSION) && (StringUtils.length(name) > GPX_FILE_EXTENSION.length())) {
- return StringUtils.substringBeforeLast(name, ".") + WAYPOINTS_FILE_SUFFIX_AND_EXTENSION;
- } else {
- return null;
- }
- }
-
- /**
* @param gpxfile
* the gpx file
* @return the expected file name of the waypoints file