Remove synchronized (#2829)

This commit is contained in:
南宫雪珊 2023-10-25 15:23:59 +08:00 committed by GitHub
parent 6f1268e7af
commit 99579a0762
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -277,12 +277,12 @@ public class LSPosedContext implements XposedInterface {
}
@Override
public synchronized void log(@NonNull String message) {
public void log(@NonNull String message) {
Log.i(TAG, mPackageName + ": " + message);
}
@Override
public synchronized void log(@NonNull String message, @NonNull Throwable throwable) {
public void log(@NonNull String message, @NonNull Throwable throwable) {
Log.e(TAG, mPackageName + ": " + message, throwable);
}