mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
AVMLockingService is mostly complete. Basic test is in place.
Ran across and fixed bug in MapAttributeImpl. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5539 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -158,7 +158,12 @@ public class MapAttributeImpl extends AttributeImpl implements MapAttribute
|
||||
@Override
|
||||
public Attribute get(String key)
|
||||
{
|
||||
return AVMDAOs.Instance().fMapEntryDAO.get(this, key).getAttribute();
|
||||
MapEntry entry = AVMDAOs.Instance().fMapEntryDAO.get(this, key);
|
||||
if (entry == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
return entry.getAttribute();
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
|
Reference in New Issue
Block a user