Skip to content

Commit 7b56383

Browse files
committed
Make SensitiveResultReceiver modules private
1 parent 0a26916 commit 7b56383

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/ql/lib/semmle/code/java/security/SensitiveResultReceiverQuery.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ deprecated private class SensitiveResultReceiverConf extends TaintTracking::Conf
5151
}
5252
}
5353

54-
module SensitiveResultReceiverConfig implements DataFlow::ConfigSig {
54+
private module SensitiveResultReceiverConfig implements DataFlow::ConfigSig {
5555
predicate isSource(DataFlow::Node node) { node.asExpr() instanceof SensitiveExpr }
5656

5757
predicate isSink(DataFlow::Node node) {
@@ -64,7 +64,7 @@ module SensitiveResultReceiverConfig implements DataFlow::ConfigSig {
6464
predicate allowImplicitRead(DataFlow::Node n, DataFlow::ContentSet c) { isSink(n) and exists(c) }
6565
}
6666

67-
module SensitiveResultReceiverFlow = TaintTracking::Global<SensitiveResultReceiverConfig>;
67+
private module SensitiveResultReceiverFlow = TaintTracking::Global<SensitiveResultReceiverConfig>;
6868

6969
/**
7070
* DEPRECATED: Use `isSensitiveResultReceiver` instead.

0 commit comments

Comments
 (0)