Use Empty instead of Void for argument
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / stmt / UnrecognizedStatement.java
index f14c0ec5b4f6c372904336d2ce6c8931e76edd05..6c98f990e96b3b00778bb163f8259df730be1e05 100644 (file)
@@ -10,12 +10,11 @@ package org.opendaylight.yangtools.yang.model.api.stmt;
 import com.google.common.annotations.Beta;
 
 /**
- * Common interface for unrecognized unknown statements. UnrecognizedStatement
- * is an instance of a statement defined via an 'extension' statement, for which
- * the parser did not have semantic support (in which case the statement would
+ * Common interface for unrecognized unknown statements. UnrecognizedStatement is an instance of a statement defined via
+ *  an 'extension' statement, for which the parser did not have semantic support (in which case the statement would
  * result in a corresponding semantic subclass of {@link UnknownStatement}).
  */
 @Beta
-public interface UnrecognizedStatement extends UnknownStatement<String> {
+public interface UnrecognizedStatement extends UnknownStatement<Object> {
 
 }