Skip to content

Commit 490168f

Browse files
committed
Fix comments
1 parent 1dffbcd commit 490168f

File tree

1 file changed

+3
-3
lines changed
  • java/ql/lib/semmle/code/java/frameworks/android

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ private class TaintPropagationModels extends SummaryModelCsv {
238238
"ShortArray", "Size", "SizeF", "SparseParcelableArray", "StringArrayList"
239239
] + ";;;Argument[-1];ReturnValue;taint"
240240
or
241-
// Intent readers that return their value
241+
// Parcel readers that return their value
242242
s =
243243
"android.os;Parcel;false;read" +
244244
[
@@ -248,7 +248,7 @@ private class TaintPropagationModels extends SummaryModelCsv {
248248
"StrongBinder", "TypedObject", "Value"
249249
] + ";;;Argument[-1];ReturnValue;taint"
250250
or
251-
// Intent readers that write to an existing object
251+
// Parcel readers that write to an existing object
252252
s =
253253
"android.os;Parcel;false;read" +
254254
[
@@ -257,7 +257,7 @@ private class TaintPropagationModels extends SummaryModelCsv {
257257
"StringList", "TypedArray", "TypedList"
258258
] + ";;;Argument[-1];Argument[0];taint"
259259
or
260-
// One Intent method that aliases an argument to a return value
260+
// One Parcel method that aliases an argument to a return value
261261
s = "android.os;Parcel;false;readParcelableList;;;Argument[0];ReturnValue;value"
262262
}
263263
}

0 commit comments

Comments
 (0)