Changeset 15586 in josm for trunk/src/org/openstreetmap/josm/plugins
- Timestamp:
- 2019-12-13T00:48:33+01:00 (5 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r15508 r15586 487 487 } 488 488 489 ButtonSpec[] options = new ButtonSpec[]{489 ButtonSpec[] options = { 490 490 new ButtonSpec( 491 491 tr("Update plugins"), … … 564 564 .append(Utils.joinAsHtmlUnorderedList(missingRequiredPlugin)) 565 565 .append("</html>"); 566 ButtonSpec[] specs = new ButtonSpec[]{566 ButtonSpec[] specs = { 567 567 new ButtonSpec( 568 568 tr("Download and restart"), … … 1207 1207 */ 1208 1208 public static boolean confirmDisablePlugin(Component parent, String reason, String name) { 1209 ButtonSpec[] options = new ButtonSpec[]{1209 ButtonSpec[] options = { 1210 1210 new ButtonSpec( 1211 1211 tr("Disable plugin"), … … 1420 1420 1421 1421 private static int askUpdateDisableKeepPluginAfterException(PluginProxy plugin) { 1422 final ButtonSpec[] options = new ButtonSpec[]{1422 final ButtonSpec[] options = { 1423 1423 new ButtonSpec( 1424 1424 tr("Update plugin"), -
trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java
r15221 r15586 439 439 Collection<String> locations = getPluginLocations(); 440 440 441 String[] nameCandidates = new String[]{441 String[] nameCandidates = { 442 442 pluginName, 443 443 pluginName + "-" + PlatformManager.getPlatform().getPlatform().name().toLowerCase(Locale.ENGLISH)};
Note:
See TracChangeset
for help on using the changeset viewer.