Changeset 12990 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2017-10-12T22:17:38+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/Preferences.java
r12989 r12990 1006 1006 * @param def default value 1007 1007 * @return a Color object for the configured colour, or the default value if none configured. 1008 * @deprecated Use a {@link ColorProperty} instead. 1008 * @deprecated Use a {@link NamedColorProperty} instead. 1009 1009 */ 1010 1010 @Deprecated … … 1045 1045 * @param def default value 1046 1046 * @return a Color object for the configured colour, or the default value if none configured. 1047 * @deprecated Use a {@link ColorProperty} instead. 1048 * You can replace this by: <code>new ColorProperty(colName, def).getChildColor(specName)</code> 1047 * @deprecated Use a {@link NamedColorProperty} instead. 1048 * You can replace this by: <code>new NamedColorProperty(colName, def).getChildColor(specName)</code> 1049 1049 */ 1050 1050 @Deprecated … … 1095 1095 * @param val The color 1096 1096 * @return true if the setting was modified 1097 * @see ColorProperty#put(Color) 1097 * @see NamedColorProperty#put(Color) 1098 1098 * @deprecated (since 12987) no longer supported (see {@link NamedColorProperty}) 1099 1099 */ -
trunk/src/org/openstreetmap/josm/gui/preferences/display/ColorPreference.java
r12989 r12990 141 141 */ 142 142 public boolean isDefault() { 143 return info.getValue() == null || Objects.equals(info.getValue(), 143 return info.getValue() == null || Objects.equals(info.getValue(), info.getDefaultValue()); 144 144 } 145 145
Note:
See TracChangeset
for help on using the changeset viewer.