Changeset 12808 in josm for trunk/src/org/openstreetmap/josm/tools/bugreport/BugReportQueue.java
- Timestamp:
- 2017-09-09T20:13:14+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/bugreport/BugReportQueue.java
r12791 r12808 17 17 public class BugReportQueue { 18 18 19 private static final BugReportQueue INSTANCE = new BugReportQueue();20 21 19 /** 22 20 * The fallback bug report handler if none is set. Prints the stacktrace on standard error stream. … … 27 25 return BugReportQueue.SuppressionMode.NONE; 28 26 }; 27 28 private static final BugReportQueue INSTANCE = new BugReportQueue(); 29 29 30 30 private final LinkedList<ReportedException> reportsToDisplay = new LinkedList<>();
Note:
See TracChangeset
for help on using the changeset viewer.