]> source.dussan.org Git - archiva.git/commitdiff
Add @Override annotations
authorJames William Dumay <jdumay@apache.org>
Mon, 9 Feb 2009 23:58:48 +0000 (23:58 +0000)
committerJames William Dumay <jdumay@apache.org>
Mon, 9 Feb 2009 23:58:48 +0000 (23:58 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@742790 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-base/archiva-model/src/main/java/org/apache/maven/archiva/model/AbstractProjectKey.java

index 63b2bc6af4c4bc6a6fb87d7c576e42379067fde2..445c21e9930d9be243d83b450f1dcc9a5433c49a 100644 (file)
@@ -113,6 +113,7 @@ public class AbstractProjectKey
     /**
      * Get the String representation of this object. - Required by JPOX.
      */
+    @Override
     public String toString()
     {
         return StringUtils.join( new String[] { groupId, artifactId } );
@@ -121,6 +122,7 @@ public class AbstractProjectKey
     /**
      * Get the hashcode for this object's values - Required by JPOX.
      */
+    @Override
     public int hashCode()
     {
         final int PRIME = 31;
@@ -133,6 +135,7 @@ public class AbstractProjectKey
     /**
      * Get the equals for this object's values - Required by JPOX.
      */
+    @Override
     public boolean equals( Object obj )
     {
         if ( this == obj )