- Timestamp:
- 2015-06-11T01:00:43+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/cache/JCSCacheManager.java
r8357 r8487 47 47 */ 48 48 public static final IntegerProperty DEFAULT_MAX_OBJECTS_IN_MEMORY = new IntegerProperty(PREFERENCE_PREFIX + ".max_objects_in_memory", 1000); 49 50 private JCSCacheManager() { 51 // Hide implicit public constructor for utility classes 52 } 49 53 50 54 @SuppressWarnings("resource") -
trunk/src/org/openstreetmap/josm/gui/dialogs/ChangesetDialog.java
r8444 r8487 480 480 */ 481 481 public static class LaunchChangesetManager { 482 483 private LaunchChangesetManager() { 484 // Hide implicit public constructor for utility classes 485 } 482 486 483 487 protected static void launchChangesetManager(Collection<Integer> toSelect) { -
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ExpressionFactory.java
r8459 r8487 101 101 * 102 102 * First parameter can be of type {@link Environment} (if needed). This is 103 * automatically filled in by JOSM and the user only sees the remaining 104 * arguments. 103 * automatically filled in by JOSM and the user only sees the remaining arguments. 105 104 * When one of the user supplied arguments cannot be converted the 106 105 * expected type or is null, the function is not called and it returns null 107 * immediately. Add the annotation {@link NullableArguments} to allow 108 * null arguments. 106 * immediately. Add the annotation {@link NullableArguments} to allow null arguments. 109 107 * Every method must be static. 110 108 */ 111 109 @SuppressWarnings("UnusedDeclaration") 112 110 public static class Functions { 111 112 private Functions() { 113 // Hide implicit public constructor for utility classes 114 } 113 115 114 116 /** -
trunk/src/org/openstreetmap/josm/tools/RightAndLefthandTraffic.java
r8377 r8487 51 51 private static volatile GeoPropertyIndex<Boolean> rlCache; 52 52 53 private RightAndLefthandTraffic() { 54 // Hide implicit public constructor for utility classes 55 } 56 53 57 /** 54 58 * Check if there is right-hand traffic at a certain location. … … 78 82 rlCache = new GeoPropertyIndex<Boolean>(new RLTrafficGeoProperty(), 24); 79 83 } 80 81 84 }
Note:
See TracChangeset
for help on using the changeset viewer.