Sprint task - fix for issue http://eclip.se/436821
diff --git a/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/model/TestDataPO.java b/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/model/TestDataPO.java
index a4f0ca8..9f241d8 100644
--- a/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/model/TestDataPO.java
+++ b/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/model/TestDataPO.java
@@ -136,33 +136,6 @@
     void setHbmParentProjectId(Long projectId) {
         m_parentProjectId = projectId;
     }
-    
-    
-   /**
-    * Overrides Object.equals()
-    * Compares this TestDataPO object to the given object to equality.
-    * @param obj the object to compare.
-    * @return true or false
-    * {@inheritDoc}
-    */
-    public boolean equals(Object obj) {
-        if (this == obj) {
-            return true;
-        }
-        if (obj instanceof TestDataPO) {
-            TestDataPO otherTestData = (TestDataPO)obj;
-            return getMap().equals(otherTestData.getMap());
-        }
-        return false;
-    }
-    
-    /**
-     * 
-     * {@inheritDoc}
-     */
-    public int hashCode() {
-        return getMap().hashCode();
-    }
 
     /**
      *