I'm not understanding this issue.
The VFSResourceVisitor should already exclude other roots
if they are nested within another root.
See VFSResourceVisitor.accepts()
| // This is our current root
| if (file.equals(root))
| return true;
|
| // Some other root, it will be handled later
| for (VirtualFile other : roots)
| {
| if (file.equals(other))
| return false;
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176483#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...