Remove [] around app package names
This simplifies copy-pasting from the result of: scrcpy --list-apps
This commit is contained in:
parent
2337f524d1
commit
0e399b65bd
@ -236,7 +236,7 @@ public final class LogUtils {
|
|||||||
} else {
|
} else {
|
||||||
builder.append("\n ").append(String.format("%" + column + "s", " "));
|
builder.append("\n ").append(String.format("%" + column + "s", " "));
|
||||||
}
|
}
|
||||||
builder.append(" [").append(app.getPackageName()).append(']');
|
builder.append(" ").append(app.getPackageName());
|
||||||
}
|
}
|
||||||
|
|
||||||
return builder.toString();
|
return builder.toString();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user