Ignore:
Timestamp:
2015-05-17T06:02:07+02:00 (10 years ago)
Author:
Don-vip
Message:

code style - A getX() method which returns a boolean should be named isX()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/notes/NoteComment.java

    r8377 r8380  
    6161    }
    6262
    63     public void setIsNew(boolean isNew) {
     63    public void setNew(boolean isNew) {
    6464        this.isNew = isNew;
    6565    }
    6666
    6767    /** @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() {
    6969        return isNew;
    7070    }
Note: See TracChangeset for help on using the changeset viewer.