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);
|