Fix checkstyle errors and activate enforcement for concepts
[yangtools.git] / common / concepts / src / main / java / org / opendaylight / yangtools / concepts / Identifier.java
index b673486196fbe34bfd453d24d42a1a5acdb402b4..db6216976c6f2c9d8b2e736f59d6aa6eb675e85e 100644 (file)
@@ -15,19 +15,20 @@ import javax.annotation.concurrent.ThreadSafe;
  * addresses, classes, etc. We do not require too much, just that the identifiers are serializable (and this
  * transferable).
  *
- * Implementations are expected to implement {@link #hashCode()} and {@link #equals(Object)} methods in a way, which
- * ensures that objects before and after serialization are considered equal.
+ * <p>Implementations are expected to implement {@link #hashCode()} and {@link #equals(Object)} methods in a way,
+ * which ensures that objects before and after serialization are considered equal.
  *
- * Implementations are advised to use the {@link java.io.Externalizable} Proxy pattern to allow future evolution
+ * <p>Implementations are advised to use the {@link java.io.Externalizable} Proxy pattern to allow future evolution
  * of their serialization format. For further efficiency, implementation should implement {@link WritableObject},
  * so they can be efficiently embedded in other {@link Serializable} objects.
  *
- * Note that this class is annotated as {@link ThreadSafe}, hence all implementations are expected to be thread-safe.
+ * <p>Note that this class is annotated as {@link ThreadSafe}, hence all implementations are expected to be
+ * thread-safe.
  */
 @ThreadSafe
 public interface Identifier extends Serializable, Immutable {
     @Override
-    boolean equals(Object o);
+    boolean equals(Object obj);
 
     @Override
     int hashCode();