Commit 40b84627 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 719422 - private java class is mentioned in inherited by list of super class

parent 4bf77766
......@@ -360,6 +360,8 @@ void ClassDef::insertSubClass(ClassDef *cd,Protection p,
Specifier s,const char *t)
{
//printf("*** insert sub class %s into %s\n",cd->name().data(),name().data());
static bool extractPrivate = Config_getBool("EXTRACT_PRIVATE");
if (!extractPrivate && cd->protection()==Private) return;
if (m_impl->inheritedBy==0)
{
m_impl->inheritedBy = new BaseClassList;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment