# This patch file was generated by NetBeans IDE
# Following Index: paths are relative to: C:\Users\Franz\Documents\NetBeansProjects\JOSM-Plugins\core\src\org\openstreetmap\josm\gui\layer
# This patch can be applied using context Tools: Patch action on respective folder.
# It uses platform neutral UTF-8 encoding and \n newlines.
# Above lines and this line are ignored by the patching process.
Index: TMSLayer.java
--- TMSLayer.java Base (BASE)
+++ TMSLayer.java Locally Modified (Based On LOCAL)
@@ -702,14 +702,19 @@
     }
 
     /**
-     * Zoom out from map.
+     * Check if zooming out is allowed
      *
-     * @return    true, if zoom increasing was successfull, false othervise
+     * @return    true, if zooming out is allowed (currentZoomLevel > minZoomLevel)
      */
     public boolean zoomDecreaseAllowed() {
         return currentZoomLevel > this.getMinZoomLvl();
     }
     
+    /**
+     * Zoom out from map.
+     * 
+     * @return    true, if zoom increasing was successfull, false othervise
+     */
     public boolean decreaseZoomLevel() {
         //int minZoom = this.getMinZoomLvl();
         if (zoomDecreaseAllowed()) {
