Changeset 10306 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2016-05-31T00:14:15+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools/bugreport
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/bugreport/DebugTextDisplay.java
r10055 r10306 15 15 */ 16 16 public class DebugTextDisplay extends JScrollPane { 17 private String text;17 private final String text; 18 18 19 19 /** -
trunk/src/org/openstreetmap/josm/tools/bugreport/ReportedException.java
r10305 r10306 251 251 private static class Section { 252 252 253 private String sectionName;254 private ArrayList<SectionEntry> entries = new ArrayList<>();253 private final String sectionName; 254 private final ArrayList<SectionEntry> entries = new ArrayList<>(); 255 255 256 256 Section(String sectionName) {
Note: See TracChangeset
for help on using the changeset viewer.