Fix code alignment 34/15734/2
authorRobert Varga <rovarga@cisco.com>
Wed, 25 Feb 2015 16:18:13 +0000 (17:18 +0100)
committerRobert Varga <rovarga@cisco.com>
Thu, 26 Feb 2015 06:17:14 +0000 (07:17 +0100)
Declaration and comment missed one leading space, fix that.

Change-Id: I198a96668ec0ad94b1b1118949988e88321f8b43
Signed-off-by: Robert Varga <rovarga@cisco.com>
code-generator/binding-data-codec/src/main/java/org/opendaylight/yangtools/binding/data/codec/impl/DataContainerCodecContext.java

index e873126598ba7f8cac91c29a1cbf7983c39e56ed..79c9eeed644afa2fa2f154394d4b5e1299c90c8d 100644 (file)
@@ -97,15 +97,15 @@ abstract class DataContainerCodecContext<T> extends NodeCodecContext {
     protected abstract DataContainerCodecContext<?> getStreamChild(final Class<?> childClass) throws IllegalArgumentException;
 
     /**
-    *
-    * Returns child context as if it was walked by
-    * {@link BindingStreamEventWriter}. This means that to enter case, one
-    * must issue getChild(ChoiceClass).getChild(CaseClass).
-    *
-    * @param childClass
-    * @return Context of child or Optional absent is supplied class is not applicable in context.
-    */
-   protected abstract Optional<DataContainerCodecContext<?>> getPossibleStreamChild(final Class<?> childClass);
+     *
+     * Returns child context as if it was walked by
+     * {@link BindingStreamEventWriter}. This means that to enter case, one
+     * must issue getChild(ChoiceClass).getChild(CaseClass).
+     *
+     * @param childClass
+     * @return Context of child or Optional absent is supplied class is not applicable in context.
+     */
+    protected abstract Optional<DataContainerCodecContext<?>> getPossibleStreamChild(final Class<?> childClass);
 
     @Override
     public String toString() {