Skip to content

Commit

Permalink
fixed - _cq_ folders now import properly as cq:
Browse files Browse the repository at this point in the history
  • Loading branch information
sfultongv committed Apr 25, 2012
1 parent e806158 commit 66dbbb3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ private void importR (Node node, PsiDirectory directory) throws RepositoryExcept
// if this is a typed node
if (contentFile != null) {
VNode vNode = VNode.makeVNode(contentFile.getVirtualFile().getInputStream(), psiDirectory.getName());
subNode = node.addNode(vNode.getName(), vNode.getType());
subNode = node.addNode(PsiUtils.unmungeNamespace(vNode.getName()), vNode.getType());
setProperties(subNode, vNode);
}
// if this is just a folder node
Expand Down

0 comments on commit 66dbbb3

Please sign in to comment.