Allow some interfaces
This commit is contained in:
parent
d9f3ac1bad
commit
3a2eef1dbb
|
|
@ -168,7 +168,7 @@ public class LSPosedContext extends XposedContext {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public PackageManager getPackageManager() {
|
public PackageManager getPackageManager() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
return base.getPackageManager();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
@ -178,12 +178,12 @@ public class LSPosedContext extends XposedContext {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Looper getMainLooper() {
|
public Looper getMainLooper() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
return base.getMainLooper();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Context getApplicationContext() {
|
public Context getApplicationContext() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
return base.getApplicationContext();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
@ -198,17 +198,17 @@ public class LSPosedContext extends XposedContext {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ClassLoader getClassLoader() {
|
public ClassLoader getClassLoader() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
return base.getClassLoader();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getPackageName() {
|
public String getPackageName() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
return base.getPackageName();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ApplicationInfo getApplicationInfo() {
|
public ApplicationInfo getApplicationInfo() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
return base.getApplicationInfo();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
@ -218,7 +218,7 @@ public class LSPosedContext extends XposedContext {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getPackageCodePath() {
|
public String getPackageCodePath() {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
return base.getPackageCodePath();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
@ -551,7 +551,7 @@ public class LSPosedContext extends XposedContext {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Object getSystemService(@NonNull String name) {
|
public Object getSystemService(@NonNull String name) {
|
||||||
throw new UnsupportedOperationException("Not implemented");
|
return base.getSystemService(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue