Changeset 12409 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2017-06-15T21:36:02+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/search/PushbackTokenizer.java
r12363 r12409 120 120 EOF(marktr("<end-of-file>")), 121 121 /** 122 * Less than sign ( <)122 * Less than sign (<) 123 123 */ 124 124 LESS_THAN("<less-than>"), 125 125 /** 126 * Greater than sign ( >)126 * Greater than sign (>) 127 127 */ 128 128 GREATER_THAN("<greater-than>"); -
trunk/src/org/openstreetmap/josm/data/Preferences.java
r12374 r12409 1211 1211 1212 1212 /** 1213 * Gets a collection of key ->value maps.1213 * Gets a collection of key/value maps. 1214 1214 * @param key The key to search at 1215 1215 * @param def The default value to use … … 1223 1223 * Stores a list of structs 1224 1224 * @param key The key to store the list in 1225 * @param value A list of key ->value maps1225 * @param value A list of key/value maps 1226 1226 * @return <code>true</code> if the value was changed 1227 1227 * @see #getListOfStructs(String, Collection) … … 1514 1514 /** 1515 1515 * Gets a map of all currently known defaults 1516 * @return The map (key ->setting)1516 * @return The map (key/setting) 1517 1517 */ 1518 1518 public Map<String, Setting<?>> getAllDefaults() {
Note:
See TracChangeset
for help on using the changeset viewer.