Changeset 31802 in osm for applications
- Timestamp:
- 2015-12-07T20:36:13+01:00 (9 years ago)
- Location:
- applications/editors/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryLayer.java
r31799 r31802 99 99 this.data = new MapillaryData(); 100 100 this.data.bounds = new CopyOnWriteArrayList<>(); 101 init();102 101 } 103 102 … … 172 171 */ 173 172 public static synchronized MapillaryLayer getInstance() { 174 if (instance == null) 173 if (instance == null) { 175 174 instance = new MapillaryLayer(); 175 instance.init(); 176 } 176 177 return instance; 177 178 }
Note:
See TracChangeset
for help on using the changeset viewer.