mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
320 B
Java
14 lines
320 B
Java
package test;
|
|
import android.content.Intent;
|
|
import android.content.Context;
|
|
import android.content.BroadcastReceiver;
|
|
|
|
class BootReceiverXml extends BroadcastReceiver {
|
|
void doStuff(Intent intent) {}
|
|
|
|
@Override
|
|
public void onReceive(Context ctx, Intent intent) { // $ Alert
|
|
doStuff(intent);
|
|
}
|
|
}
|