Kill trailing whitespace
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / type / UnionTypeDefinition.java
index 04903c0b03154f612ee92fd269c9d268c7b1dbb1..6b2897f588fbccce006d21b310a6ce8985271831 100644 (file)
@@ -13,7 +13,7 @@ import org.opendaylight.yangtools.yang.model.api.TypeDefinition;
 
 /**
  * Contains the method which access union item in the union type.
- * 
+ *
  */
 public interface UnionTypeDefinition extends TypeDefinition<UnionTypeDefinition> {
 
@@ -21,8 +21,8 @@ public interface UnionTypeDefinition extends TypeDefinition<UnionTypeDefinition>
      * Returns type definitions which represent the values of the arguments for
      * all YANG <code>type</code> substatement in the main <code>union</code>
      * statement.
-     * 
+     *
      * @return list of the type definition which contains the union items.
      */
-    public List<TypeDefinition<?>> getTypes();
+    List<TypeDefinition<?>> getTypes();
 }