Changeset 18833 in josm for trunk/test/unit/org/openstreetmap
- Timestamp:
- 2023-09-20T15:28:52+02:00 (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/testutils/FakeOsmApi.java
r10373 r18833 110 110 /** 111 111 * Gets and caches an instance of this API. 112 * @return The API in tance. Always the same object.112 * @return The API instance. Always the same object. 113 113 */ 114 114 public static synchronized FakeOsmApi getInstance() { 115 115 if (instance == null) { 116 116 instance = new FakeOsmApi(); 117 cacheInstance(instance);118 117 } 118 cacheInstance(instance); 119 119 return instance; 120 120 }
Note:
See TracChangeset
for help on using the changeset viewer.