Changeset 6164 in josm
- Timestamp:
- 2013-08-21T01:01:05+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/Preferences.java
r6143 r6164 963 963 List<List<String>> prop = arrayProperties.get(key); 964 964 if (prop != null) { 965 @SuppressWarnings( "unchecked")965 @SuppressWarnings({ "unchecked", "rawtypes" }) 966 966 Collection<Collection<String>> prop_cast = (Collection) prop; 967 967 return prop_cast; … … 974 974 List<List<String>> prop = arrayProperties.get(key); 975 975 if (prop != null) { 976 @SuppressWarnings( "unchecked")976 @SuppressWarnings({ "unchecked", "rawtypes" }) 977 977 Collection<Collection<String>> prop_cast = (Collection) prop; 978 978 return prop_cast; … … 982 982 983 983 public boolean putArray(String key, Collection<Collection<String>> value) { 984 boolean changed = false;984 //boolean changed = false; 985 985 986 986 List<List<String>> oldValue = null;
Note:
See TracChangeset
for help on using the changeset viewer.