Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2007-01-07 06:32:15 +0000
committerEike Stepper2007-01-07 06:32:15 +0000
commit6143e5e68543c9ab9507f218215b2286a304bb45 (patch)
tree4d920fae76cbcfad6fa2849439d056bb027a31e4 /plugins
parent5df59112cf629393502bfa776c60e12126b785ab (diff)
downloadcdo-6143e5e68543c9ab9507f218215b2286a304bb45.tar.gz
cdo-6143e5e68543c9ab9507f218215b2286a304bb45.tar.xz
cdo-6143e5e68543c9ab9507f218215b2286a304bb45.zip
Remove cast
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/topology/AbstractTopologyTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/topology/AbstractTopologyTest.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/topology/AbstractTopologyTest.java
index 23d9883bb5..204067a22a 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/topology/AbstractTopologyTest.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/topology/AbstractTopologyTest.java
@@ -208,7 +208,7 @@ public abstract class AbstractTopologyTest extends TestCase implements ITopology
protected EObject loadRoot(String path) throws Exception
{
CDOResource resource = getResource(path);
- return (EObject) resource.getContents().get(0);
+ return resource.getContents().get(0);
}
protected CDOResource saveRoot(EObject root, String path) throws Exception

Back to the top