File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed
java/ql/lib/semmle/code/java Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -378,21 +378,6 @@ class SrcCallable extends Callable {
378378 this .isProtected ( ) and not tsub .isFinal ( )
379379 )
380380 }
381-
382- /**
383- * Holds if this callable is implicitly `public`, meaning that it can be
384- * called outside the codebase or if there exists a method that can be called
385- * outside the codebase and this callable is a possible implementation of that
386- * method.
387- */
388- predicate isImplicitlyPublic ( ) {
389- this .isEffectivelyPublic ( )
390- or
391- exists ( SrcMethod m |
392- m .( SrcCallable ) .isEffectivelyPublic ( ) and
393- m .getAPossibleImplementationOfSrcMethod ( ) = this
394- )
395- }
396381}
397382
398383/** Gets the erasure of `t1` if it is a raw type, or `t1` itself otherwise. */
You can’t perform that action at this time.
0 commit comments