File: svn-r32821_Use-visitor-pattern-for-painting-tiles.patch

package info (click to toggle)
jmapviewer 2.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 628 kB
  • ctags: 1,131
  • sloc: java: 4,377; xml: 172; makefile: 23; sh: 2
file content (15 lines) | stat: -rw-r--r-- 558 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: fix #13222 - Use visitor pattern for painting tiles (patch by michael2402) - gsoc-core
Author: michael2402
Origin: https://trac.openstreetmap.org/changeset/32821/subversion

--- a/src/org/openstreetmap/gui/jmapviewer/Tile.java
+++ b/src/org/openstreetmap/gui/jmapviewer/Tile.java
@@ -228,7 +228,7 @@ public class Tile {
     }
 
     /**
-     * @return tile indexes as TileXY object
+     * @return tile indexes of the top left corner as TileXY object
      */
     public TileXY getTileXY() {
         return new TileXY(xtile, ytile);