- Timestamp:
- 2011-07-14T08:53:06+02:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/Version.java
r3083 r4237 21 21 */ 22 22 public class Version { 23 /** constant to indicate that the curr nt build isn't assigned a JOSM version number */23 /** constant to indicate that the current build isn't assigned a JOSM version number */ 24 24 static public final int JOSM_UNKNOWN_VERSION = 0; 25 25 … … 38 38 String s = null; 39 39 try { 40 in = new BufferedReader(new InputStreamReader(resource.openStream() ));40 in = new BufferedReader(new InputStreamReader(resource.openStream(), "UTF-8")); 41 41 StringBuffer sb = new StringBuffer(); 42 42 for (String line = in.readLine(); line != null; line = in.readLine()) {
Note:
See TracChangeset
for help on using the changeset viewer.