Changeset 11874 in josm for trunk/test/unit


Ignore:
Timestamp:
2017-04-09T17:24:39+02:00 (8 years ago)
Author:
Don-vip
Message:

findbugs - UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/command/SequenceCommandTest.java

    r11734 r11874  
    122122        FailingCommand command2 = new FailingCommand();
    123123        TestCommand command3 = new TestCommand(null);
    124         SequenceCommand command = new SequenceCommand("seq", Arrays.<Command>asList(command1, command2, command3));
    125         command.continueOnError = true;
     124        SequenceCommand command = new SequenceCommand("seq", Arrays.<Command>asList(command1, command2, command3), true);
    126125        assertTrue(command.executeCommand());
    127126        assertTrue(command1.executed);
Note: See TracChangeset for help on using the changeset viewer.