Turn ParserNamespace into an abstract class
[yangtools.git] / parser / yang-parser-spi / src / main / java / org / opendaylight / yangtools / yang / parser / spi / meta / StatementSupportNamespace.java
index 266a6480bbd94ae710bb34cafec7582c0a1bcee8..685c9a6ff5dec3935984ef9deaa4be4cbe685f85 100644 (file)
@@ -17,6 +17,8 @@ import org.opendaylight.yangtools.yang.common.QName;
  * as {@link StatementDefinitionNamespace} and {@link StmtContext#yangVersion()} of the source root statement.
  */
 @Beta
-public interface StatementSupportNamespace extends ParserNamespace<QName, StatementSupport<?, ?, ?>> {
-
+public final class StatementSupportNamespace extends ParserNamespace<QName, StatementSupport<?, ?, ?>> {
+    StatementSupportNamespace() {
+        // FIXME: is this really used?!
+    }
 }