Added support for parsing yang models with already resolved context.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-api / src / main / java / org / opendaylight / controller / yang / model / api / ChoiceNode.java
index 03a8962d552c26031e51f178e0160c30a77e8d8f..ee4163da48c082531c4f4c99179d242b7f5c383c 100644 (file)
@@ -19,7 +19,7 @@ public interface ChoiceNode extends DataSchemaNode, AugmentationTarget {
      * @return ChoiceCaseNode objects defined in this node
      */
     Set<ChoiceCaseNode> getCases();
-    
+
     String getDefaultCase();
 
 }