- Timestamp:
- 2016-03-13T00:48:12+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/Preferences.java
r9966 r9978 153 153 * Used to decide whether to write backup preference file in {@link #save()} 154 154 */ 155 protected boolean initSuccessful = false;155 protected boolean initSuccessful; 156 156 157 157 /** -
trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java
r9755 r9978 188 188 private String countryCode = ""; 189 189 /** mirrors of different type for this entry */ 190 private List<ImageryInfo> mirrors = null;190 private List<ImageryInfo> mirrors; 191 191 /** icon used in menu */ 192 192 private String icon; 193 private boolean isGeoreferenceValid = false;194 private boolean isEpsg4326To3857Supported = false;193 private boolean isGeoreferenceValid; 194 private boolean isEpsg4326To3857Supported; 195 195 // when adding a field, also adapt the ImageryInfo(ImageryInfo) 196 196 // and ImageryInfo(ImageryPreferenceEntry) constructor, equals method, and ImageryPreferenceEntry -
trunk/src/org/openstreetmap/josm/data/osm/TagMap.java
r9969 r9978 37 37 * Current tag index. Always a multiple of 2. 38 38 */ 39 private int currentIndex = 0;39 private int currentIndex; 40 40 41 41 /** -
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java
r9952 r9978 267 267 268 268 /* can be set by tests, if detailed benchmark data is requested */ 269 public BenchmarkData benchmarkData = null;269 public BenchmarkData benchmarkData; 270 270 271 271 private static Map<Font, Boolean> IS_GLYPH_VECTOR_DOUBLE_TRANSLATION_BUG = new HashMap<>(); -
trunk/src/org/openstreetmap/josm/data/preferences/PreferencesReader.java
r9827 r9978 42 42 private final SortedMap<String, Setting<?>> settings = new TreeMap<>(); 43 43 private XMLStreamReader parser; 44 private int version = 0;44 private int version; 45 45 private Reader reader; 46 46 private File file; -
trunk/src/org/openstreetmap/josm/data/validation/routines/DomainValidator.java
r9962 r9978 1565 1565 * synchronized methods. 1566 1566 */ 1567 private static boolean inUse = false;1567 private static boolean inUse; 1568 1568 1569 1569 /* -
trunk/src/org/openstreetmap/josm/gui/MapStatus.java
r9885 r9978 183 183 184 184 /** The {@link CoordinateFormat} set in the previous update */ 185 private transient CoordinateFormat previousCoordinateFormat = null;185 private transient CoordinateFormat previousCoordinateFormat; 186 186 private final ImageLabel latText = new ImageLabel("lat", 187 187 null, LatLon.SOUTH_POLE.latToString(CoordinateFormat.DEGREES_MINUTES_SECONDS).length(), PROP_BACKGROUND_COLOR.get()); -
trunk/src/org/openstreetmap/josm/gui/layer/Layer.java
r9949 r9978 138 138 * This is set if user renamed this layer. 139 139 */ 140 private boolean renamed = false;140 private boolean renamed; 141 141 142 142 /** -
trunk/src/org/openstreetmap/josm/gui/widgets/CompileSearchTextDecorator.java
r8985 r9978 19 19 private final JTextComponent textComponent; 20 20 private final String originalToolTipText; 21 private SearchCompiler.Match filter = null;21 private SearchCompiler.Match filter; 22 22 23 23 private CompileSearchTextDecorator(JTextComponent textComponent) { -
trunk/src/org/openstreetmap/josm/gui/widgets/FileChooserManager.java
r9687 r9978 38 38 private final String curDir; 39 39 40 private boolean multiple = false;41 private String title = null;40 private boolean multiple; 41 private String title; 42 42 private Collection<? extends FileFilter> filters; 43 43 private FileFilter defaultFilter; 44 44 private int selectionMode = JFileChooser.FILES_ONLY; 45 private String extension = null;46 private boolean allTypes = false;47 private File file = null;45 private String extension; 46 private boolean allTypes; 47 private File file; 48 48 49 49 private AbstractFileChooser fc; -
trunk/src/org/openstreetmap/josm/gui/widgets/QuadStateCheckBox.java
r9360 r9978 129 129 private final class QuadStateDecorator implements ButtonModel { 130 130 private final ButtonModel other; 131 private String propertyText = null;131 private String propertyText; 132 132 133 133 private QuadStateDecorator(ButtonModel other) {
Note:
See TracChangeset
for help on using the changeset viewer.