Skip to content

Commit c7e7e24

Browse files
Jami Cogswellatorralba
authored andcommitted
clean up files
1 parent 012cfeb commit c7e7e24

File tree

5 files changed

+55
-87
lines changed

5 files changed

+55
-87
lines changed

java/ql/lib/change-notes/2022-09-22-android-deeplink-flow-steps.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
category: minorAnalysis
33
---
44
* Added data flow steps for tainted Android intents that are sent to services and receivers.
5+
* Updated data flow step for tainted Android intents that are sent to activities.

java/ql/test/library-tests/frameworks/android/intent/TestStartActivityToGetIntent.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ static Object source(String kind) {
88
return null;
99
}
1010

11-
static void sink(Object sink) {
12-
}
11+
static void sink(Object sink) {}
1312

1413
public void test(Context ctx, Activity act) {
1514
{

java/ql/test/library-tests/frameworks/android/intent/TestStartBroadcastReceiverToIntent.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ static Object source() {
88
return null;
99
}
1010

11-
static void sink(Object sink) {
12-
}
11+
static void sink(Object sink) {}
1312

1413
public void test(Context ctx) {
1514
{

java/ql/test/library-tests/frameworks/android/intent/TestStartServiceToIntent.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ static Object source() {
99
return null;
1010
}
1111

12-
static void sink(Object sink) {
13-
}
12+
static void sink(Object sink) {}
1413

1514
public void test(Context ctx) {
1615
{

java/ql/test/stubs/google-android-9.0.0/android/app/Service.java

Lines changed: 51 additions & 81 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)