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 ef30ca2 commit 5dfb0d4Copy full SHA for 5dfb0d4
java/ql/test/library-tests/dataflow/taintsources/IntentSources.java
@@ -1,11 +1,16 @@
1
package com.example.myapp;
2
3
import android.app.Activity;
4
+import android.content.Context;
5
6
public class IntentSources extends Activity {
7
8
private static void sink(Object o) {}
9
10
+ public IntentSources(Context base) {
11
+ super(base);
12
+ }
13
+
14
public void test() throws java.io.IOException {
15
16
String trouble = this.getIntent().getStringExtra("key");
0 commit comments