Remove first argument of Schema::isModule

The argument wasn't used anywhere, I have no idea why it was there.

Change-Id: I21b9c3fa323187e5f0484d4db9e2c543f9a6f7cf
diff --git a/src/static_schema.hpp b/src/static_schema.hpp
index e82d43e..742c53d 100644
--- a/src/static_schema.hpp
+++ b/src/static_schema.hpp
@@ -49,7 +49,7 @@
     StaticSchema();
 
     bool isContainer(const schemaPath_& location, const ModuleNodePair& node) const override;
-    bool isModule(const schemaPath_& location, const std::string& name) const override;
+    bool isModule(const std::string& name) const override;
     bool isLeaf(const schemaPath_& location, const ModuleNodePair& node) const override;
     bool isList(const schemaPath_& location, const ModuleNodePair& node) const override;
     bool isPresenceContainer(const schemaPath_& location, const ModuleNodePair& node) const override;