Changeset 11613 in josm
- Timestamp:
- 2017-02-25T14:27:05+01:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/search/SearchCompiler.java
r11553 r11613 1669 1669 } 1670 1670 1671 private Match parseExpressionStep2(List<Object> list) { 1671 private static Match parseExpressionStep2(List<Object> list) { 1672 1672 Match result = null; 1673 1673 for (int i = list.size() - 1; i >= 0; i--) { -
trunk/src/org/openstreetmap/josm/gui/layer/gpx/GpxDrawHelper.java
r11587 r11613 1236 1236 } 1237 1237 1238 1239 1238 /** 1240 1239 * Draw a dotted heat map … … 1245 1244 * @param drawSize draw size of draw element 1246 1245 */ 1247 private void drawHeatGrayDotMap(Graphics2D gB, MapView mv, List<WayPoint> listSegm, int drawSize) { 1246 private static void drawHeatGrayDotMap(Graphics2D gB, MapView mv, List<WayPoint> listSegm, int drawSize) { 1248 1247 1249 1248 // typical rendering rate -> use realtime preview instead of accurate display … … 1289 1288 * @param dropRate Pixel render drop rate 1290 1289 */ 1291 private void drawHeatSurfaceLine(Graphics2D g, Point fromPnt, Point toPnt, int drawSize, double rmsSizeX, double rmsSizeY, double dropRate) { 1290 private static void drawHeatSurfaceLine(Graphics2D g, 1291 Point fromPnt, Point toPnt, int drawSize, double rmsSizeX, double rmsSizeY, double dropRate) { 1292 1292 1293 1293 // collect frequently used items -
trunk/src/org/openstreetmap/josm/tools/PlatformHookUnixoid.java
r11218 r11613 384 384 * @return true if the dot directory should be used 385 385 */ 386 private boolean useDotDirectory() { 386 private static boolean useDotDirectory() { 387 387 return getDotDirectory().exists(); 388 388 }
Note:
See TracChangeset
for help on using the changeset viewer.