Changeset 8836 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2015-10-08T00:22:36+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/BugReportExceptionHandler.java
r8510 r8836 133 133 * @param t the exception 134 134 */ 135 publicBugReporterThread(Throwable t) {135 BugReporterThread(Throwable t) { 136 136 super("Bug Reporter"); 137 137 this.e = t; -
trunk/src/org/openstreetmap/josm/tools/ExceptionUtil.java
r8756 r8836 584 584 + "you tried to read, update, or delete. Either the respective object<br>" 585 585 + "does not exist on the server or you are using an invalid URL to access<br>" 586 + "it. Please carefully check the server''s address ''{0}'' for typos." 587 ,apiUrl);586 + "it. Please carefully check the server''s address ''{0}'' for typos.", 587 apiUrl); 588 588 Main.error(e); 589 589 return "<html>" + message + "</html>"; -
trunk/src/org/openstreetmap/josm/tools/ImageProvider.java
r8734 r8836 95 95 * Position of an overlay icon 96 96 */ 97 public staticenum OverlayPosition {97 public enum OverlayPosition { 98 98 /** North west */ 99 99 NORTHWEST, … … 109 109 * Supported image types 110 110 */ 111 public staticenum ImageType {111 public enum ImageType { 112 112 /** Scalable vector graphics */ 113 113 SVG, … … 120 120 * @since 7687 121 121 */ 122 public staticenum ImageSizes {122 public enum ImageSizes { 123 123 /** SMALL_ICON value of on Action */ 124 124 SMALLICON, … … 1075 1075 private final String result; 1076 1076 1077 publicSAXReturnException(String result) {1077 SAXReturnException(String result) { 1078 1078 this.result = result; 1079 1079 } -
trunk/src/org/openstreetmap/josm/tools/SubclassFilteredCollection.java
r8285 r8836 27 27 private S current; 28 28 29 publicFilterIterator(Iterator<? extends S> iterator) {29 FilterIterator(Iterator<? extends S> iterator) { 30 30 this.iterator = iterator; 31 31 } -
trunk/src/org/openstreetmap/josm/tools/XmlObjectParser.java
r8510 r8836 49 49 private final String namespace; 50 50 51 publicAddNamespaceFilter(String namespace) {51 AddNamespaceFilter(String namespace) { 52 52 this.namespace = namespace; 53 53 } … … 60 60 super.startElement(uri, localName, qName, atts); 61 61 } 62 63 } 64 62 } 65 63 } 66 64 … … 190 188 private final Map<String, Method> methods = new HashMap<>(); 191 189 192 publicEntry(Class<?> klass, boolean onStart, boolean both) {190 Entry(Class<?> klass, boolean onStart, boolean both) { 193 191 this.klass = klass; 194 192 this.onStart = onStart; -
trunk/src/org/openstreetmap/josm/tools/date/FallbackDateParser.java
r8513 r8836 42 42 * Creates a new instance. 43 43 */ 44 publicFallbackDateParser() {44 FallbackDateParser() { 45 45 // Build a list of candidate date parsers. 46 46 dateParsers = new ArrayList<>(formats.length);
Note:
See TracChangeset
for help on using the changeset viewer.