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/16 21:09:49 UTC

svn commit: r1136609 - /commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java

Author: simonetripodi
Date: Thu Jun 16 19:09:49 2011
New Revision: 1136609

URL: http://svn.apache.org/viewvc?rev=1136609&view=rev
Log:
ignoring unchecked warnings, etherogeneous edges won't be tested (ATM)

Modified:
    commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java

Modified: commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java?rev=1136609&r1=1136608&r2=1136609&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java (original)
+++ commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java Thu Jun 16 19:09:49 2011
@@ -100,7 +100,7 @@ public class BaseLabeledEdge<V extends L
             return false;
         }
 
-        @SuppressWarnings( "unchecked" ) // etherogeneous edges won't be tested
+        @SuppressWarnings( "unchecked" ) // etherogeneous xedges won't be tested
         BaseLabeledEdge<V> other = (BaseLabeledEdge<V>) obj;
 
         if ( head == null )