Changeset 32779 in osm for applications/editors/josm/plugins/CommandLine/src/CommandLine/History.java
- Timestamp:
- 2016-08-08T00:01:16+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CommandLine/src/CommandLine/History.java
r30671 r32779 1 /* 2 * History.java 3 * 4 * Copyright 2010 Hind <foxhind@gmail.com> 5 * 6 */ 7 1 // License: GPL. For details, see LICENSE file. 8 2 package CommandLine; 9 3 … … 26 20 if (prevItem == null) { 27 21 historyList.addFirst(item); 28 } 29 else { 22 } else { 30 23 if (!prevItem.equalsIgnoreCase(item)) 31 24 historyList.addFirst(item);
Note:
See TracChangeset
for help on using the changeset viewer.