Ignore:
Timestamp:
2013-07-30T18:35:47+02:00 (13 years ago)
Author:
akks
Message:

see #8902 - collection size ==/!= 0 -> isEmpty()/!isEmpty() (patch by shinigami)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MultiSplitLayout.java

    r6084 r6093  
    11931193    private static void addSplitChild(Split parent, Node child) {
    11941194        List<Node> children = new ArrayList<Node>(parent.getChildren());
    1195         if (children.size() == 0) {
     1195        if (children.isEmpty()) {
    11961196            children.add(child);
    11971197        }
Note: See TracChangeset for help on using the changeset viewer.