Build fix

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@15379 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2009-07-24 10:56:39 +00:00
parent de52dd981c
commit 5a1e4717e0

View File

@@ -150,7 +150,6 @@ public class EntityLookupCacheTest extends TestCase implements EntityLookup<Long
}
@Override
public String getValueKey(Object value)
{
assertNotNull(value);
@@ -162,7 +161,6 @@ public class EntityLookupCacheTest extends TestCase implements EntityLookup<Long
/**
* Simulate creation of a new database entry
*/
@Override
public Pair<Long, Object> createValue(Object value)
{
assertNotNull(value);
@@ -184,7 +182,6 @@ public class EntityLookupCacheTest extends TestCase implements EntityLookup<Long
return new Pair<Long, Object>(newKey, value);
}
@Override
public Pair<Long, Object> findByKey(Long key)
{
assertNotNull(key);
@@ -199,7 +196,6 @@ public class EntityLookupCacheTest extends TestCase implements EntityLookup<Long
return new Pair<Long, Object>(key, value);
}
@Override
public Pair<Long, Object> findByValue(Object value)
{
assertNotNull(value);