Java: add full stops for ql docs

This commit is contained in:
Napalys Klicius
2025-08-29 08:09:03 +02:00
parent c836104717
commit 6132900e12

View File

@@ -24,14 +24,14 @@ predicate isWithinType(Callable c, RefType t) {
}
/**
* Holds if `e` is within the same package as `t`
* Holds if `e` is within the same package as `t`.
*/
predicate isWithinPackage(Expr e, RefType t) {
e.getCompilationUnit().getPackage() = t.getPackage()
}
/**
* Holds if a callable or any of its enclosing callables is annotated with @VisibleForTesting
* Holds if a callable or any of its enclosing callables is annotated with @VisibleForTesting.
*/
predicate isWithinVisibleForTestingContext(Callable c) {
c.getAnAnnotation().getType().hasName("VisibleForTesting")