We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I've noticed an issue that prevents method resolution. Class com.samsung.knox.securefolder.util.WeakReferenceHandler
com.samsung.knox.securefolder.util.WeakReferenceHandler
public abstract class WeakReferenceHandler<T> extends android.os.Handler { private java.lang.ref.WeakReference<T> mReference; public void handleMessage(android.os.Message message) { java.lang.Object obj = this.mReference.get(); // should be "T t = ..." if (obj != null) { handleMessage(obj, message); } } public abstract void handleMessage(T t, android.os.Message message);
there are many of them, but it could be a simple case
APK: https://drive.google.com/file/d/1eEUDrNOTySdg4YCAFhtrG4514KOibJzE/view?usp=sharing
The text was updated successfully, but these errors were encountered:
test: NYI tests for #836 and #837
1bb9023
feat: add methods information from standard library, improve generics…
dea7714
… and varargs restore (#836)
Fixed. Anyway many other cases with generics not yet covered.
Sorry, something went wrong.
fix: don't modify method argument types in MethodInvokeVisitor (#927 #…
b1d5ed0
…836)
No branches or pull requests
Hi, I've noticed an issue that prevents method resolution. Class
com.samsung.knox.securefolder.util.WeakReferenceHandler
there are many of them, but it could be a simple case
APK: https://drive.google.com/file/d/1eEUDrNOTySdg4YCAFhtrG4514KOibJzE/view?usp=sharing
The text was updated successfully, but these errors were encountered: