We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ac3fb4 commit 8da9b9dCopy full SHA for 8da9b9d
java/ql/src/semmle/code/java/frameworks/android/Intent.qll
@@ -43,8 +43,9 @@ class IntentGetExtraMethod extends Method, TaintPreservingCallable {
43
override predicate returnsTaintFrom(int arg) { arg = -1 }
44
}
45
46
-class BundleGetterMethods extends Method, TaintPreservingCallable {
47
- BundleGetterMethods() {
+/** A getter on `android.os.BaseBundle` or `android.os.Bundle`. */
+class BundleGetterMethod extends Method, TaintPreservingCallable {
48
+ BundleGetterMethod() {
49
getDeclaringType().hasQualifiedName("android.os", ["BaseBundle", "Bundle"]) and
50
getName().matches("get%")
51
0 commit comments