Changeset 8870 in josm for trunk/src/org/openstreetmap/josm/gui/preferences/imagery
- Timestamp:
- 2015-10-13T23:50:14+02:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/preferences/imagery
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/preferences/imagery/CacheContentsPanel.java
r8769 r8870 172 172 } 173 173 174 private Long getCacheSize(CacheAccess<String, BufferedImageCacheEntry> cache) { 174 private static Long getCacheSize(CacheAccess<String, BufferedImageCacheEntry> cache) { 175 175 ICacheStats stats = cache.getStatistics(); 176 176 for (IStats cacheStats: stats.getAuxiliaryCacheStats()) { … … 242 242 } 243 243 244 private DefaultTableModel getTableModel(final CacheAccess<String, BufferedImageCacheEntry> cache) { 244 private static DefaultTableModel getTableModel(final CacheAccess<String, BufferedImageCacheEntry> cache) { 245 245 final DefaultTableModel tableModel = new DefaultTableModel( 246 246 getCacheStats(cache), -
trunk/src/org/openstreetmap/josm/gui/preferences/imagery/ImageryPreference.java
r8836 r8870 99 99 } 100 100 101 private void addSettingsSection(final JPanel p, String name, JPanel section, GBC gbc) { 101 private static void addSettingsSection(final JPanel p, String name, JPanel section, GBC gbc) { 102 102 final JLabel lbl = new JLabel(name); 103 103 lbl.setFont(lbl.getFont().deriveFont(Font.BOLD));
Note:
See TracChangeset
for help on using the changeset viewer.