Remove [] around app package names

This simplifies copy-pasting from the result of:

    scrcpy --list-apps
This commit is contained in:
Romain Vimont 2024-11-10 17:03:39 +01:00
parent 2337f524d1
commit 0e399b65bd

View File

@ -236,7 +236,7 @@ public final class LogUtils {
} else {
builder.append("\n ").append(String.format("%" + column + "s", " "));
}
builder.append(" [").append(app.getPackageName()).append(']');
builder.append(" ").append(app.getPackageName());
}
return builder.toString();