Author: simonetripodi
Date: Sat Jun 11 23:50:01 2011
New Revision: 1134833

URL: http://svn.apache.org/viewvc?rev=1134833&view=rev
Log:
variable must not start with uppercase char

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

Modified: 
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/decorator/DDirectedGraph.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/decorator/DDirectedGraph.java?rev=1134833&r1=1134832&r2=1134833&view=diff
==============================================================================
--- 
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/decorator/DDirectedGraph.java
 (original)
+++ 
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/decorator/DDirectedGraph.java
 Sat Jun 11 23:50:01 2011
@@ -60,9 +60,9 @@ public class DDirectedGraph<V extends Ve
             return (DDirectedGraph<V, WE>) decoratedGraphs.get( graph );
         }
 
-        DDirectedGraph<V, WE> RC = new DDirectedGraph<V, WE>( graph );
-        decoratedGraphs.put( graph, RC );
-        return RC;
+        DDirectedGraph<V, WE> decorated = new DDirectedGraph<V, WE>( graph );
+        decoratedGraphs.put( graph, decorated );
+        return decorated;
     }
 
     private final WeightedGraph<V, WE> weighted;


Reply via email to