clean up files

This commit is contained in:
Jami Cogswell
2022-09-23 15:39:28 -04:00
parent 7e13610d24
commit 65f3ae9829
6 changed files with 117 additions and 201 deletions

View File

@@ -70,11 +70,7 @@ class AndroidReceiveIntentMethod extends Method {
*/
class AndroidServiceIntentMethod extends Method {
AndroidServiceIntentMethod() {
(
this.getName().matches("onStart%") or
this.getName().matches("on%ind") or
this.hasName("onTaskRemoved")
) and
this.getName().matches(["onStart%", "on%ind", "onTaskRemoved"]) and
this.getDeclaringType() instanceof TypeService
}
}