Changeset 3795 in josm
- Timestamp:
- 2011-01-21T11:56:43+01:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/Preferences.java
r3710 r3795 627 627 String s = get(key); 628 628 if(s != null && s.length() != 0) 629 return Arrays.asList(s.split("\u001e" ));629 return Arrays.asList(s.split("\u001e", -1)); 630 630 return def; 631 631 } … … 641 641 String s = get(key); 642 642 if (s != null && s.length() != 0) 643 return Arrays.asList(s.split("\u001e" ));643 return Arrays.asList(s.split("\u001e", -1)); 644 644 return Collections.emptyList(); 645 645 }
Note:
See TracChangeset
for help on using the changeset viewer.