Changeset 29769 in osm for applications/editors/josm/plugins/livegps/src/livegps/LiveGpsAcquirer.java
- Timestamp:
- 2013-07-24T18:01:58+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/livegps/src/livegps/LiveGpsAcquirer.java
r27021 r29769 3 3 import static org.openstreetmap.josm.tools.I18n.tr; 4 4 5 import java.lang.Float;6 5 7 6 import java.beans.PropertyChangeEvent; … … 16 15 17 16 import org.openstreetmap.josm.Main; 18 import org.openstreetmap.josm.data.coor.LatLon;19 17 20 18 import org.json.JSONObject; … … 118 116 } 119 117 118 @Override 120 119 public void run() { 121 120 LiveGpsData oldGpsData = null; … … 133 132 Thread.sleep(1000); 134 133 } catch (InterruptedException ignore) {} 135 } ;134 } 136 135 } 137 136 … … 167 166 try { 168 167 Thread.sleep(1000); 169 } catch (InterruptedException ignore) {} ;168 } catch (InterruptedException ignore) {} 170 169 // send warning to layer 171 170 } … … 235 234 Watch.put("enable", true); 236 235 Watch.put("json", true); 237 } catch (JSONException je) {} ;236 } catch (JSONException je) {} 238 237 239 238 String Request = "?WATCH=" + Watch.toString() + ";\n";
Note:
See TracChangeset
for help on using the changeset viewer.