Fix: Fixed "toString" Methods For Most Classes + AsciiTable.java Attempted Fix.

This commit is contained in:
GabrieleRadice
2026-04-26 17:15:20 +02:00
parent d707f16d0b
commit ef82b21718
10 changed files with 25 additions and 11 deletions
@@ -45,6 +45,6 @@ public class AsciiTable {
private String rpad(String s, int w) {
if (s.length() >= w) return s.substring(0, w);
return s + " ".repeat(w - s.length());
return s + " ".repeat(w - s.length()) + "\t";
}
}