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 2011/06/11 15:15:58 UTC

svn commit: r1134627 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedEdge.java

Author: simonetripodi
Date: Sat Jun 11 13:15:58 2011
New Revision: 1134627

URL: http://svn.apache.org/viewvc?rev=1134627&view=rev
Log:
added missing @return statement in javadoc

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

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedEdge.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedEdge.java?rev=1134627&r1=1134626&r2=1134627&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedEdge.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/WeightedEdge.java Sat Jun 11 13:15:58 2011
@@ -28,6 +28,8 @@ public interface WeightedEdge<W extends 
 
     /**
      * Gets the weight attribute of the WeightedEdge object
+     *
+     * @return the weight attribute of the WeightedEdge object
      */
     W getWeight();