Ignore:
Timestamp:
2011-02-01T17:12:54+01:00 (13 years ago)
Author:
stoecker
Message:

switch to internal base64 again

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/Preferences.java

    r3815 r3840  
    656656                put(key, s);
    657657            }
    658             return Arrays.asList(s.split("\u001e"));
     658            return Arrays.asList(s.split("\u001e", -1));
    659659        }
    660660        return Collections.emptyList();
     
    670670        return put(key, join("\u001e", val));
    671671    }
    672    
     672
    673673    synchronized private void putCollectionDefault(String key, Collection<String> val) {
    674674        putDefault(key, join("\u001e", val));
    675675    }
    676    
     676
    677677    /**
    678678     * Used to read a 2-dimensional array of strings from the preference file.
Note: See TracChangeset for help on using the changeset viewer.