Skip to content

Commit 6dac86b

Browse files
Fix unneeded import and spelling mistake
1 parent 0c1af24 commit 6dac86b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/** Provides definitions to reason about Android Sensitive Communication queries */
22

33
import java
4-
import semmle.code.java.dataflow.DataFlow3
54
import semmle.code.java.dataflow.TaintTracking
65
import semmle.code.java.frameworks.android.Intent
76
import semmle.code.java.security.SensitiveActions

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ import DataFlow::PathGraph
1717

1818
from SensitiveCommunicationConfig cfg, DataFlow::PathNode source, DataFlow::PathNode sink
1919
where cfg.hasFlowPath(source, sink)
20-
select sink.getNode(), source, sink, "This call may leak sensitive infomration from $@.",
20+
select sink.getNode(), source, sink, "This call may leak sensitive information from $@.",
2121
source.getNode(), "here"

0 commit comments

Comments
 (0)