Ignore:
Timestamp:
2017-09-09T16:10:32+02:00 (7 years ago)
Author:
Don-vip
Message:

see #14794 - checkstyle (unit tests)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/tools/bugreport/BugReportExceptionHandlerTest.java

    r10886 r12802  
    2828    public void testHandleException() throws InterruptedException {
    2929        CountDownLatch latch = new CountDownLatch(1);
    30         BugReportQueue.getInstance().addBugReportHandler(e -> {latch.countDown(); return false;});
     30        BugReportQueue.getInstance().addBugReportHandler(e -> {
     31            latch.countDown(); return false;
     32        });
    3133        BugReportExceptionHandler.handleException(new Exception("testHandleException"));
    3234        latch.await();
Note: See TracChangeset for help on using the changeset viewer.