Changeset 8836 in josm for trunk/src/org/openstreetmap/josm/gui/history/TwoColumnDiff.java
- Timestamp:
- 2015-10-08T00:22:36+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/history/TwoColumnDiff.java
r8702 r8836 49 49 } 50 50 51 publicItem(DiffItemType state, Object value) {51 Item(DiffItemType state, Object value) { 52 52 this.state = state; 53 53 this.value = state == DiffItemType.EMPTY ? null : value; … … 64 64 boolean referenceReversed = false; 65 65 66 publicTwoColumnDiff(Object[] reference, Object[] current) {66 TwoColumnDiff(Object[] reference, Object[] current) { 67 67 this.reference = Utils.copyArray(reference); 68 68 this.current = Utils.copyArray(current);
Note:
See TracChangeset
for help on using the changeset viewer.