Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
In OAK's SessionImpl, we currently do:
@Override
public Item getItem(String absPath) throws PathNotFoundException, RepositoryException {
if (absPath.startsWith("[") && absPath.endsWith("]"))
else
{ return super.getItem(absPath); }}
AbstractSession could do this on it's own.