You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2012/03/03 14:17:29 UTC

svn commit: r1296620 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/weight/Monoid.java

Author: simonetripodi
Date: Sat Mar  3 13:17:29 2012
New Revision: 1296620

URL: http://svn.apache.org/viewvc?rev=1296620&view=rev
Log:
removed unnecessary modifier

Modified:
    commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/weight/Monoid.java

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/weight/Monoid.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/weight/Monoid.java?rev=1296620&r1=1296619&r2=1296620&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/weight/Monoid.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/weight/Monoid.java Sat Mar  3 13:17:29 2012
@@ -30,9 +30,10 @@ public interface Monoid<M>
 
     /**
      * Returns the inverse of the input element.
+     *
      * @param element
-     * @return the inverse of the input element 
+     * @return the inverse of the input element
      */
-    public M inverse( M element );
+    M inverse( M element );
 
 }