Skip to content

Commit

Permalink
fix: avoid an error method outline
Browse files Browse the repository at this point in the history
Signed-off-by: keta1 <[email protected]>
  • Loading branch information
keta1 committed Sep 9, 2022
1 parent 40c0c43 commit a8df9bd
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,9 @@ public static String getXposedBridgeClassName() {
if (sObfuscatedPackageName == null) {
return "de.robv.android.xposed.XposedBridge";
} else {
return sObfuscatedPackageName + ".XposedBridge";
var sb = new StringBuilder(sObfuscatedPackageName);
sb.append(".XposedBridge");
return sb.toString();
}
}
}

0 comments on commit a8df9bd

Please sign in to comment.