Skip to content

Replacing label with a list of Label elements in Format. #1054

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Mar 27, 2024
Prev Previous commit
Next Next commit
Removing label from toLogString.
  • Loading branch information
jekopena authored and tonihei committed Mar 25, 2024
commit 8673e6d39ad28b019d51966e1cf3ca2870e739cd
Original file line number Diff line number Diff line change
Expand Up @@ -1338,9 +1338,6 @@ public static String toLogString(@Nullable Format format) {
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);
Expand Down