Changeset 13329 in josm
- Timestamp:
- 2018-01-15T01:53:50+01:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/actions
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/CloseChangesetAction.java
r12634 r13329 143 143 } 144 144 145 /** 146 * Determines if the download task has been canceled. 147 * @return {@code true} if the download task has been canceled 148 */ 145 149 public boolean isCanceled() { 146 150 return canceled; 147 151 } 148 152 153 /** 154 * Returns the last exception that occured. 155 * @return the last exception that occured, or {@code null} 156 */ 149 157 public Exception getLastException() { 150 158 return lastException; -
trunk/src/org/openstreetmap/josm/actions/ExtensionFileFilter.java
r12671 r13329 140 140 } 141 141 142 public enum AddArchiveExtension { NONE, BASE, ALL } 142 /** 143 * Strategy to determine if extensions must be added to the description. 144 */ 145 public enum AddArchiveExtension { 146 /** No extension is added */ 147 NONE, 148 /** Only base extension is added */ 149 BASE, 150 /** All extensions are added (base + archives) */ 151 ALL 152 } 143 153 144 154 /** -
trunk/src/org/openstreetmap/josm/actions/SaveAction.java
r12279 r13329 31 31 } 32 32 33 /** 34 * Returns the unique instance. 35 * @return the unique instance 36 */ 33 37 public static SaveAction getInstance() { 34 38 return instance; -
trunk/src/org/openstreetmap/josm/actions/SaveAsAction.java
r12846 r13329 29 29 } 30 30 31 /** 32 * Returns the unique instance. 33 * @return the unique instance 34 */ 31 35 public static SaveAsAction getInstance() { 32 36 return instance; -
trunk/src/org/openstreetmap/josm/actions/UnJoinNodeWayAction.java
r12641 r13329 125 125 if (selectedWays.size() == 1) { 126 126 Way w = selectedWays.get(0); 127 for (Node n: new ArrayList< Node>(resultingNodes)) {127 for (Node n: new ArrayList<>(resultingNodes)) { 128 128 if (!w.containsNode(n)) { 129 129 resultingNodes.remove(n);
Note:
See TracChangeset
for help on using the changeset viewer.