File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
tools/src/main/scala/org/apache/spark/tools Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,10 @@ object GenerateMIMAIgnore {
7272 val classSymbol = mirror.classSymbol(Class .forName(className, false , classLoader))
7373 val moduleSymbol = mirror.staticModule(className)
7474 val directlyPrivateSpark =
75- isPackagePrivate(classSymbol) || isPackagePrivateModule(moduleSymbol) || classSymbol.isPrivate || classSymbol.isProtected
75+ isPackagePrivate(classSymbol) ||
76+ isPackagePrivateModule(moduleSymbol) ||
77+ classSymbol.isPrivate ||
78+ classSymbol.isProtected
7679 val developerApi = isDeveloperApi(classSymbol) || isDeveloperApi(moduleSymbol)
7780 val experimental = isExperimental(classSymbol) || isExperimental(moduleSymbol)
7881 /* Inner classes defined within a private[spark] class or object are effectively
You can’t perform that action at this time.
0 commit comments