Changeset 6806 in josm for trunk/src/org/openstreetmap/josm/gui
- Timestamp:
- 2014-02-03T19:26:05+01:00 (12 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 5 edited
-
MainApplication.java (modified) (2 diffs)
-
conflict/tags/TagConflictResolverModel.java (modified) (1 diff)
-
history/VersionTable.java (modified) (1 diff)
-
mappaint/mapcss/ExpressionFactory.java (modified) (1 diff)
-
preferences/validator/ValidatorTagCheckerRulesPreference.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainApplication.java
r6797 r6806 524 524 525 525 private boolean handleNetworkErrors() { 526 boolean condition = ! networkErrors.isEmpty();526 boolean condition = !NETWORK_ERRORS.isEmpty(); 527 527 if (condition) { 528 528 Set<String> errors = new TreeSet<String>(); 529 for (Throwable t : networkErrors.values()) {529 for (Throwable t : NETWORK_ERRORS.values()) { 530 530 errors.add(t.toString()); 531 531 } … … 537 537 "It may result of a missing proxy configuration.<br>" + 538 538 "Would you like to change your proxy settings now?", 539 Utils.joinAsHtmlUnorderedList( networkErrors.keySet()),539 Utils.joinAsHtmlUnorderedList(NETWORK_ERRORS.keySet()), 540 540 Utils.joinAsHtmlUnorderedList(errors) 541 541 )); -
trunk/src/org/openstreetmap/josm/gui/conflict/tags/TagConflictResolverModel.java
r6802 r6806 266 266 } else { 267 267 // Do not suggest to keep all values in order to reduce the wrong usage of semicolon values, see #9104! 268 //decision.keepAll();269 268 } 270 269 } -
trunk/src/org/openstreetmap/josm/gui/history/VersionTable.java
r6743 r6806 185 185 @Override 186 186 protected String createInfoUrl(Object infoObject) { 187 HistoryOsmPrimitive primitive= (HistoryOsmPrimitive) infoObject;188 return primitive.getUser() == null ? null : getBaseBrowseUrl() + "/user/" +primitive.getUser().getName();187 HistoryOsmPrimitive hp = (HistoryOsmPrimitive) infoObject; 188 return hp.getUser() == null ? null : getBaseBrowseUrl() + "/user/" + hp.getUser().getName(); 189 189 } 190 190 -
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ExpressionFactory.java
r6805 r6806 538 538 return s == null ? null : URLEncoder.encode(s, "UTF-8"); 539 539 } catch (UnsupportedEncodingException ex) { 540 throw new RuntimeException(); 540 throw new RuntimeException(ex); 541 541 } 542 542 } -
trunk/src/org/openstreetmap/josm/gui/preferences/validator/ValidatorTagCheckerRulesPreference.java
r6670 r6806 124 124 * The unique instance. 125 125 */ 126 public final staticRulePrefHelper INSTANCE = new RulePrefHelper();126 public static final RulePrefHelper INSTANCE = new RulePrefHelper(); 127 127 128 128 /**
Note:
See TracChangeset
for help on using the changeset viewer.
