Purged two vestigial arguments from DirectoryNode.lookupChild() interface.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3981 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Britt Park
2006-09-30 14:49:57 +00:00
parent 5e36db4b45
commit 20bff37610
5 changed files with 19 additions and 24 deletions

View File

@@ -46,11 +46,9 @@ public interface DirectoryNode extends AVMNode
* Lookup a child node.
* @param lPath The Lookup so far.
* @param name The name of the child to lookup.
* @param version The version to look under.
* @param write Whether this is occuring in a write context.
* @param includeDeleted Include deleted nodes or not.
*/
public AVMNode lookupChild(Lookup lPath, String name, int version, boolean write,
boolean includeDeleted);
public AVMNode lookupChild(Lookup lPath, String name, boolean includeDeleted);
/**
* Lookup a child node using an AVMNodeDescriptor as context.