Changeset 2626 in josm for trunk/test/unit/org


Ignore:
Timestamp:
2009-12-13T11:48:12+01:00 (14 years ago)
Author:
jttt
Message:

Fixed some of the warnings found by FindBugs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/gui/conflict/nodes/NodeListMergeModelTest.java

    r2620 r2626  
    1111import java.beans.PropertyChangeListener;
    1212import java.util.ArrayList;
     13import java.util.Arrays;
    1314import java.util.List;
    1415
     
    4647                int rows[] = (int[])idx[i];
    4748                if (rows == null || rows.length != 2) {
    48                     fail("illegal selection range. Either null or not length 2: " + rows);
     49                    fail("illegal selection range. Either null or not length 2: " + Arrays.toString(rows));
    4950                }
    5051                if (rows[0] > rows[1]) {
Note: See TracChangeset for help on using the changeset viewer.