Changeset 8380 in josm for trunk/src/org/openstreetmap/josm/data/notes
- Timestamp:
- 2015-05-17T06:02:07+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/notes/NoteComment.java
r8377 r8380 61 61 } 62 62 63 public void set IsNew(boolean isNew) {63 public void setNew(boolean isNew) { 64 64 this.isNew = isNew; 65 65 } 66 66 67 67 /** @return true if this is a new comment/action and needs to be uploaded to the API */ 68 public boolean getIsNew() {68 public boolean isNew() { 69 69 return isNew; 70 70 }
Note:
See TracChangeset
for help on using the changeset viewer.