Skip to content

Commit d5a4dad

Browse files
committed
Fix typos in error messages
1 parent 8a2f511 commit d5a4dad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libxposed_common.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jboolean XposedBridge_initNative(JNIEnv* env, jclass clazz) {
101101
methodXResourcesTranslateResId = env->GetStaticMethodID(classXResources, "translateResId",
102102
"(ILandroid/content/res/XResources;Landroid/content/res/Resources;)I");
103103
if (methodXResourcesTranslateResId == NULL) {
104-
ALOGE("ERROR: could not find method %s.translateResId(int, Resources, Resources)", CLASS_XRESOURCES);
104+
ALOGE("ERROR: could not find method %s.translateResId(int, XResources, Resources)", CLASS_XRESOURCES);
105105
logExceptionStackTrace();
106106
env->ExceptionClear();
107107
return false;
@@ -110,7 +110,7 @@ jboolean XposedBridge_initNative(JNIEnv* env, jclass clazz) {
110110
methodXResourcesTranslateAttrId = env->GetStaticMethodID(classXResources, "translateAttrId",
111111
"(Ljava/lang/String;Landroid/content/res/XResources;)I");
112112
if (methodXResourcesTranslateAttrId == NULL) {
113-
ALOGE("ERROR: could not find method %s.findAttrId(String, Resources, Resources)", CLASS_XRESOURCES);
113+
ALOGE("ERROR: could not find method %s.findAttrId(String, XResources)", CLASS_XRESOURCES);
114114
logExceptionStackTrace();
115115
env->ExceptionClear();
116116
return false;

0 commit comments

Comments
 (0)