Author: simonetripodi
Date: Mon Apr 23 10:25:03 2012
New Revision: 1329163
URL: http://svn.apache.org/viewvc?rev=1329163&view=rev
Log:
reivial format
Modified:
commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/GraphSerializationTestCase.java
Modified:
commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/GraphSerializationTestCase.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/GraphSerializationTestCase.java?rev=1329163&r1=1329162&r2=1329163&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/GraphSerializationTestCase.java
(original)
+++
commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/GraphSerializationTestCase.java
Mon Apr 23 10:25:03 2012
@@ -174,6 +174,7 @@ public class GraphSerializationTestCase
GraphConnection<BaseLabeledVertex, BaseLabeledEdge> connections =
new AbstractGraphConnection<BaseLabeledVertex, BaseLabeledEdge>()
{
+
@Override
public void connect()
{
@@ -185,8 +186,8 @@ public class GraphSerializationTestCase
addEdge( new BaseLabeledEdge( "a -> c" ) ).from( a ).to( c
);
addEdge( new BaseLabeledEdge( "c -> d" ) ).from( c ).to( d
);
addEdge( new BaseLabeledEdge( "d -> b" ) ).from( d ).to( b
);
-
}
+
};
return connections;
}
@@ -196,6 +197,7 @@ public class GraphSerializationTestCase
GraphConnection<BaseLabeledVertex, BaseLabeledWeightedEdge<Double>>
connections =
new AbstractGraphConnection<BaseLabeledVertex,
BaseLabeledWeightedEdge<Double>>()
{
+
@Override
public void connect()
{
@@ -207,8 +209,8 @@ public class GraphSerializationTestCase
addEdge( new BaseLabeledWeightedEdge<Double>( "a -> c", 1D
) ).from( a ).to( c );
addEdge( new BaseLabeledWeightedEdge<Double>( "c -> d", 1D
) ).from( c ).to( d );
addEdge( new BaseLabeledWeightedEdge<Double>( "d -> b", 1D
) ).from( d ).to( b );
-
}
+
};
return connections;
}