Skip to content

Commit 3e3503a

Browse files
Fix failing checks
1 parent b6c584c commit 3e3503a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ private predicate isStartActivityOrServiceSink(DataFlow::Node arg) {
122122
)
123123
}
124124

125-
predicate isCleanIntent(Expr intent) {
125+
private predicate isCleanIntent(Expr intent) {
126126
intent.getType() instanceof TypeIntent and
127127
(
128128
exists(MethodAccess setRecieverMa |

java/ql/src/Security/CWE/CWE-927/SensitiveCommunication.qhelp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<example>
1818
<p>The following example shows two ways of broadcasting intents. In the 'BAD' case, no "receiver permission" is specified. In the 'GOOD' case, "receiver permission" or "receiver application" is specified.</p>
19-
<sample src="SensitiveBroadcast.java" />
19+
<sample src="SensitiveCommunication.java" />
2020
</example>
2121

2222
<references>

0 commit comments

Comments
 (0)