BUG-869: remove public modifier
authorRobert Varga <rovarga@cisco.com>
Tue, 31 Mar 2015 20:55:31 +0000 (22:55 +0200)
committerRobert Varga <rovarga@cisco.com>
Wed, 1 Apr 2015 15:23:34 +0000 (17:23 +0200)
Public is implied for all methods in an interface, do not specify it
explicitly.

Change-Id: Ic673b60111f9ecf62a6242d3bedf8607036a3403
Signed-off-by: Robert Varga <rovarga@cisco.com>
code-generator/binding-data-codec/src/main/java/org/opendaylight/yangtools/binding/data/codec/api/BindingNormalizedNodeCachingCodec.java
code-generator/binding-generator-api/src/main/java/org/opendaylight/yangtools/sal/binding/generator/api/ClassLoadingStrategy.java

index 2e990d9d540b8031979514cbf787b8ee8a5ad440..f0a41aeb2075f74b0d8cc9e8f1b88550315d6964 100644 (file)
@@ -11,27 +11,22 @@ import com.google.common.annotations.Beta;
 import org.opendaylight.yangtools.yang.binding.DataObject;
 
 /**
- *
  * Caching variant of Binding to Normalized Node codec.
  *
  * Caching may introduce performance penalty to serialization / deserialization
  * but may decrease use of heap for repetitive objects.
  *
  * @param <T> Binding representtion of data
- *
  */
 @Beta
 public interface BindingNormalizedNodeCachingCodec<T extends DataObject> extends BindingNormalizedNodeCodec<T>, AutoCloseable {
-
     /**
-     *
      * Invoking close will invalidate this codec and any of its child
      * codecs and will invalidate cache.
      *
      * Any subsequent calls to this codec will fail with {@link IllegalStateException}
      * thrown.
-     *
      */
     @Override
-    public void close();
+    void close();
 }
index 778b73ba9447d40d45563505757f2e4de271779b..2d9e32d5b59eeca7cbc16be88e0a8dce4decd5c8 100644 (file)
@@ -11,7 +11,7 @@ import org.opendaylight.yangtools.sal.binding.model.api.Type;
 
 public interface ClassLoadingStrategy {
 
-    public Class<?> loadClass(Type type) throws ClassNotFoundException;
+    Class<?> loadClass(Type type) throws ClassNotFoundException;
 
     Class<?> loadClass(String fullyQualifiedName) throws ClassNotFoundException;