Changeset 9067 in josm for trunk/src/org/openstreetmap/josm/command
- Timestamp:
- 2015-11-28T18:26:23+01:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/command
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/ChangeRelationMemberRoleCommand.java
r8456 r9067 25 25 private final Relation relation; 26 26 // Position of the member 27 private int position = -1;27 private final int position; 28 28 // The new role 29 29 private final String newRole; -
trunk/src/org/openstreetmap/josm/command/MoveCommand.java
r8549 r9067 51 51 * List of all old states of the objects. 52 52 */ 53 private List<OldNodeState> oldState = new LinkedList<>();53 private final List<OldNodeState> oldState = new LinkedList<>(); 54 54 55 55 /** -
trunk/src/org/openstreetmap/josm/command/RotateCommand.java
r8931 r9067 20 20 * Pivot point 21 21 */ 22 private EastNorth pivot;22 private final EastNorth pivot; 23 23 24 24 /** 25 25 * angle of rotation starting click to pivot 26 26 */ 27 private double startAngle;27 private final double startAngle; 28 28 29 29 /** -
trunk/src/org/openstreetmap/josm/command/ScaleCommand.java
r8840 r9067 14 14 * Pivot point 15 15 */ 16 private EastNorth pivot;16 private final EastNorth pivot; 17 17 18 18 /** … … 24 24 * World position of the mouse when the user started the command. 25 25 */ 26 private EastNorth startEN;26 private final EastNorth startEN; 27 27 28 28 /**
Note: See TracChangeset
for help on using the changeset viewer.