Rename ChoiceNodeCodecContext
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / impl / DataObjectCodecPrototype.java
index 3f5c6b52c19d729cf14b1c2801dd3c5d7df3cf1c..8a248e30b25e5ef4e1d1c1fad1cf512554d85c68 100644 (file)
@@ -58,7 +58,7 @@ non-sealed class DataObjectCodecPrototype<T extends RuntimeTypeContainer> extend
                     ? KeyedListNodeCodecContext.create((DataContainerCodecPrototype<ListRuntimeType>) this)
                             : new ListNodeCodecContext(this);
         } else if (type instanceof ChoiceRuntimeType) {
-            return new ChoiceNodeCodecContext(this);
+            return new ChoiceCodecContext(this);
         }
         throw new IllegalArgumentException("Unsupported type " + getBindingClass() + " " + type);
     }