Skip to content
Snippets Groups Projects
Commit e857c5fd authored by srosse's avatar srosse
Browse files

OO-4227: search existence of VFS files a little more further

parent b9e7391f
No related branches found
No related tags found
No related merge requests found
...@@ -873,6 +873,9 @@ public class VFSManager { ...@@ -873,6 +873,9 @@ public class VFSManager {
//no write container, but the virtual container exist //no write container, but the virtual container exist
return true; return true;
} }
if (item instanceof NamedContainerImpl) {
item = ((NamedContainerImpl)item).getDelegate();
}
} }
if(item instanceof LocalImpl) { if(item instanceof LocalImpl) {
LocalImpl localFile = (LocalImpl)item; LocalImpl localFile = (LocalImpl)item;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment