mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
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:
@@ -150,7 +150,6 @@ public class EntityLookupCacheTest extends TestCase implements EntityLookup<Long
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getValueKey(Object value)
|
public String getValueKey(Object value)
|
||||||
{
|
{
|
||||||
assertNotNull(value);
|
assertNotNull(value);
|
||||||
@@ -162,7 +161,6 @@ public class EntityLookupCacheTest extends TestCase implements EntityLookup<Long
|
|||||||
/**
|
/**
|
||||||
* Simulate creation of a new database entry
|
* Simulate creation of a new database entry
|
||||||
*/
|
*/
|
||||||
@Override
|
|
||||||
public Pair<Long, Object> createValue(Object value)
|
public Pair<Long, Object> createValue(Object value)
|
||||||
{
|
{
|
||||||
assertNotNull(value);
|
assertNotNull(value);
|
||||||
@@ -184,7 +182,6 @@ public class EntityLookupCacheTest extends TestCase implements EntityLookup<Long
|
|||||||
return new Pair<Long, Object>(newKey, value);
|
return new Pair<Long, Object>(newKey, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public Pair<Long, Object> findByKey(Long key)
|
public Pair<Long, Object> findByKey(Long key)
|
||||||
{
|
{
|
||||||
assertNotNull(key);
|
assertNotNull(key);
|
||||||
@@ -199,7 +196,6 @@ public class EntityLookupCacheTest extends TestCase implements EntityLookup<Long
|
|||||||
return new Pair<Long, Object>(key, value);
|
return new Pair<Long, Object>(key, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public Pair<Long, Object> findByValue(Object value)
|
public Pair<Long, Object> findByValue(Object value)
|
||||||
{
|
{
|
||||||
assertNotNull(value);
|
assertNotNull(value);
|
||||||
|
Reference in New Issue
Block a user