Changeset 29854 in osm for applications/editors/josm/plugins/geochat/src/geochat/ChatServerConnection.java
- Timestamp:
- 2013-08-21T03:47:16+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/geochat/src/geochat/ChatServerConnection.java
r29851 r29854 1 1 // License: WTFPL 2 2 package geochat; 3 4 import static org.openstreetmap.josm.tools.I18n.tr; 3 5 4 6 import java.io.IOException; 5 7 import java.io.UnsupportedEncodingException; 6 8 import java.net.URLEncoder; 7 import java.util.*; 8 import java.util.logging.*; 9 import java.util.ArrayList; 10 import java.util.Date; 11 import java.util.HashMap; 12 import java.util.HashSet; 13 import java.util.List; 14 import java.util.Map; 15 import java.util.Set; 16 9 17 import org.json.JSONArray; 10 18 import org.json.JSONException; … … 15 23 import org.openstreetmap.josm.data.projection.Projection; 16 24 import org.openstreetmap.josm.gui.MapView; 17 import static org.openstreetmap.josm.tools.I18n.tr;18 25 19 26 /**
Note:
See TracChangeset
for help on using the changeset viewer.