Skip to content
This repository has been archived by the owner on Aug 24, 2022. It is now read-only.

Commit

Permalink
existsWmsstore defect fix
Browse files Browse the repository at this point in the history
Resolved geosolutions-it#190

existsWmsstore was calling existsCoveragestore instead of overloaded existsWmsstore
  • Loading branch information
bilzkat authored and basduineveld committed Jul 20, 2016
1 parent 709710e commit bf62fb6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ public boolean existsWmsstore(String workspace, String wsName, boolean quietOnNo
* @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);
}

//==========================================================================
Expand Down

0 comments on commit bf62fb6

Please sign in to comment.