Fix bug in GeoServerRESTReader

This commit is contained in:
Bas Duineveld 2016-07-20 13:54:41 +02:00
parent c588f2c66b
commit 687088386f

View File

@ -903,7 +903,7 @@ public class GeoServerRESTReader {
* @return boolean indicating if the Layer exists * @return boolean indicating if the Layer exists
*/ */
public boolean existsLayer(String workspace, String name){ public boolean existsLayer(String workspace, String name){
return existsLayerGroup(workspace, name, Util.DEFAULT_QUIET_ON_NOT_FOUND); return existsLayer(workspace, name, Util.DEFAULT_QUIET_ON_NOT_FOUND);
} }
//========================================================================== //==========================================================================