We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e863638 commit b54e312Copy full SHA for b54e312
librootjava/src/main/java/eu/chainfire/librootjava/Reflection.java
@@ -74,7 +74,9 @@ static Context getSystemContext() {
74
@SuppressWarnings({"JavaReflectionMemberAccess"})
75
private static Object getActivityManager() {
76
// We could possibly cast this to ActivityManager instead of Object, but we don't currently
77
- // need that for our usage, and it would require retesting everything
+ // need that for our usage, and it would require retesting everything. Maybe ActivityManager
78
+ // is even wrong and it should be ActivityManagerService, for which we don't have the class
79
+ // definition anyway. TODO: investigate further.
80
81
synchronized (lock) {
82
if (oActivityManager != null) {
0 commit comments