[jboss-dev-forums] [Design of POJO Server] - Re: JBAS-5895; Processing too many classes

adrian@jboss.org do-not-reply at jboss.com
Mon Sep 15 07:39:54 EDT 2008


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#4176483

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176483



More information about the jboss-dev-forums mailing list