We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dbd11a commit 2ca8103Copy full SHA for 2ca8103
1 file changed
java/ql/lib/semmle/code/java/Member.qll
@@ -378,21 +378,6 @@ class SrcCallable extends Callable {
378
this.isProtected() and not tsub.isFinal()
379
)
380
}
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
- }
396
397
398
/** Gets the erasure of `t1` if it is a raw type, or `t1` itself otherwise. */
0 commit comments