Skip to content

Commit 269d60d

Browse files
committed
issue #10953 Java Package Lists does not include nested packages
1 parent 93ad492 commit 269d60d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/namespacedef.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1525,7 +1525,7 @@ static bool hasNonReferenceNestedNamespaceRec(const NamespaceDef *nd,int level)
15251525
bool NamespaceDefImpl::isVisibleInHierarchy() const
15261526
{
15271527
bool allExternals = Config_getBool(ALLEXTERNALS);
1528-
return (allExternals || hasNonReferenceNestedNamespaceRec(this,0)) && isLinkable();
1528+
return allExternals || hasNonReferenceNestedNamespaceRec(this,0) || isLinkable();
15291529
}
15301530

15311531
bool NamespaceDefImpl::isLinkableInProject() const

0 commit comments

Comments
 (0)