diff options
author | Keith Packard <keithp@keithp.com> | 2015-05-19 10:12:52 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2015-05-19 10:12:52 -0700 |
commit | 2b57158737f85c7009658b3e923c66794f01bbdf (patch) | |
tree | 98e3c6706d8f8142a22e1b586ae7755cc5f16d09 /altosui | |
parent | 3e5e9333420ede74d998556c1bbd5888e8ff75ae (diff) |
altosui: Remove un-implemented --fetchmaps argument
This has been stubbed out for a while, so just remove it.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui')
-rw-r--r-- | altosui/AltosUI.java | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java index 0af09651..5dd532bd 100644 --- a/altosui/AltosUI.java +++ b/altosui/AltosUI.java @@ -587,16 +587,7 @@ public class AltosUI extends AltosUIFrame { for (int i = 0; i < args.length; i++) { if (args[i].equals("--help")) help(0); - else if (args[i].equals("--fetchmaps")) { - if (args.length < i + 3) { - help(1); - } else { - double lat = Double.parseDouble(args[i+1]); - double lon = Double.parseDouble(args[i+2]); -// AltosSiteMap.prefetchMaps(lat, lon); - i += 2; - } - } else if (args[i].equals("--replay")) + else if (args[i].equals("--replay")) process = process_replay; else if (args[i].equals("--kml")) process = process_kml; |