Remove trailing semicolons
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / impl / IdentifiableItemCodec.java
index 4c1ea58eaa3e117e793210dd52605da0814a2c73..6f44a8ca1f8465fd315eb27bb487accfb8e81546 100644 (file)
@@ -177,7 +177,7 @@ abstract class IdentifiableItemCodec implements Codec<NodeIdentifierWithPredicat
         for (@SuppressWarnings("rawtypes") final Constructor constr : clazz.getConstructors()) {
             final Class<?>[] parameters = constr.getParameterTypes();
             if (!clazz.equals(parameters[0])) {
-                // It is not copy constructor;
+                // It is not copy constructor...
                 try {
                     return MethodHandles.publicLookup().unreflectConstructor(constr);
                 } catch (IllegalAccessException e) {