Ignore:
Timestamp:
2015-05-17T06:02:07+02:00 (9 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/osm/NoteData.java

    r8365 r8380  
    149149            }
    150150            for (NoteComment comment : note.getComments()) {
    151                 if (comment.getIsNew()) {
     151                if (comment.isNew()) {
    152152                    return true;
    153153                }
     
    170170                    @Override
    171171                    public boolean evaluate(NoteComment object) {
    172                         return object.getIsNew();
     172                        return object.isNew();
    173173                    }
    174174                });
Note: See TracChangeset for help on using the changeset viewer.