Removing label from toLogString.

This commit is contained in:
Juan Carlos Penalver 2024-03-18 05:26:49 -06:00 committed by tonihei
parent 54c23e2856
commit 8673e6d39a

View File

@ -1338,9 +1338,6 @@ public final class Format implements Bundleable {
if (format.language != null) {
builder.append(", language=").append(format.language);
}
if (format.label != null) {
builder.append(", label=").append(format.label);
}
if (format.labels.size() > 0) {
builder.append(", labels=[");
Joiner.on(',').appendTo(builder, format.labels);