Fix a few warnings 07/45207/1
authorRobert Varga <rovarga@cisco.com>
Tue, 6 Sep 2016 08:18:20 +0000 (10:18 +0200)
committerRobert Varga <rovarga@cisco.com>
Tue, 6 Sep 2016 08:18:20 +0000 (10:18 +0200)
Wrong javadoc and unused import.

Change-Id: I9c8a022d1289215cd50f0225bfa46b082984e668
Signed-off-by: Robert Varga <rovarga@cisco.com>
yang/yang-data-util/src/main/java/org/opendaylight/yangtools/yang/data/util/AbstractNodeDataWithSchema.java
yang/yang-data-util/src/main/java/org/opendaylight/yangtools/yang/data/util/CompositeNodeDataWithSchema.java

index 861767a9b1327895ffd8b9cfceff63a32be6c3d8..2740a2a1d7b42d20d274280e979e6a00c2e79ca2 100644 (file)
@@ -28,7 +28,8 @@ public abstract class AbstractNodeDataWithSchema {
 
     /**
      * Return the associated schema node.
-     * @return
+     *
+     * @return Associated schema node.
      */
     public final DataSchemaNode getSchema() {
         return schema;
index 836fb8ee73a7671e9ce06459e8234c7ea97d6734..45791b1effe884a1abda9fc3f1bdea4ce16ec8a9 100644 (file)
@@ -7,7 +7,6 @@
  */
 package org.opendaylight.yangtools.yang.data.util;
 
-import com.google.common.base.Function;
 import com.google.common.base.Preconditions;
 import com.google.common.collect.ArrayListMultimap;
 import com.google.common.collect.Collections2;