existsWmsstore defect fix

Resolved #190

existsWmsstore was calling existsCoveragestore instead of overloaded existsWmsstore
This commit is contained in:
bilzkat 2016-04-29 10:51:38 -04:00
parent c588f2c66b
commit f72860860d

View File

@ -619,7 +619,7 @@ public class GeoServerRESTReader {
* @return boolean indicating if the wmsstore exists
*/
public boolean existsWmsstore(String workspace, String wsName){
return existsCoveragestore(workspace, wsName, Util.DEFAULT_QUIET_ON_NOT_FOUND);
return existsWmsstore(workspace, wsName, Util.DEFAULT_QUIET_ON_NOT_FOUND);
}
//==========================================================================