Skip to content

Commit af812cf

Browse files
Jami Cogswellatorralba
authored andcommitted
fix code scanning bot warnings
1 parent 47fcbdd commit af812cf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

java/ql/lib/semmle/code/java/frameworks/android/Intent.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,10 +324,10 @@ private class StartActivityIntentStep extends AdditionalValueStep {
324324
startActivity.getMethod().overrides*(any(StartActivityMethod m)) and
325325
getIntent.getMethod().overrides*(any(AndroidGetIntentMethod m)) and
326326
newIntent.getConstructedType() instanceof TypeIntent and
327-
DataFlow::localExprFlow(newIntent, getIntentArgOfStartActMethod(startActivity)) and
327+
DataFlow::localExprFlow(newIntent, this.getIntentArgOfStartActMethod(startActivity)) and
328328
getClassArgOfIntentConstructor(newIntent).getType().(ParameterizedType).getATypeArgument() =
329329
getIntent.getReceiverType() and
330-
n1.asExpr() = getIntentArgOfStartActMethod(startActivity) and
330+
n1.asExpr() = this.getIntentArgOfStartActMethod(startActivity) and
331331
n2.asExpr() = getIntent
332332
)
333333
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private import semmle.code.xml.AndroidManifest
3737
// )
3838
// }
3939
// }
40-
// ! experimental modelling of `parseUri`
40+
// ! experimental modeling of `parseUri`
4141
/**
4242
* The method `Intent.parseUri`
4343
*/

0 commit comments

Comments
 (0)