mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2025-01-28 02:51:51 +01:00
Added toString to resolve issue with arrays
This commit is contained in:
parent
2d032523c7
commit
de951b6c4b
@ -107,4 +107,15 @@ public record PanelTemplateRecord(Panel.Type type,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "PanelTemplateRecord {type=" + type +
|
||||||
|
", title=" + title +
|
||||||
|
", border=" + border +
|
||||||
|
", background=" + background +
|
||||||
|
", forcedRows=" + Arrays.toString(forcedRows) +
|
||||||
|
", content=" + Arrays.toString(content) + "}";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user