Changeset 6890 in josm for trunk/src/org/openstreetmap/josm/plugins
- Timestamp:
- 2014-02-27T02:50:12+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/plugins
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r6883 r6890 1326 1326 private JCheckBox cbDontShowAgain; 1327 1327 1328 protected void build() {1328 protected final void build() { 1329 1329 setLayout(new GridBagLayout()); 1330 1330 GridBagConstraints gc = new GridBagConstraints(); -
trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java
r6843 r6890 192 192 } 193 193 194 private void scanManifest(Manifest manifest, boolean oldcheck) {194 private final void scanManifest(Manifest manifest, boolean oldcheck) { 195 195 String lang = LanguageInfo.getLanguageCodeManifest(); 196 196 Attributes attr = manifest.getMainAttributes(); … … 500 500 501 501 @Override 502 public String toString() {502 public final String toString() { 503 503 return getName(); 504 504 } -
trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java
r6883 r6890 59 59 protected enum CacheType {PLUGIN_LIST, ICON_LIST} 60 60 61 protected void init(Collection<String> sites, boolean displayErrMsg){61 protected final void init(Collection<String> sites, boolean displayErrMsg){ 62 62 this.sites = sites; 63 63 if (sites == null) { … … 88 88 init(sites, displayErrMsg); 89 89 } 90 91 90 92 91 @Override
Note: See TracChangeset
for help on using the changeset viewer.