Fix: Fixed Various "toString" Method Issues + Relative Tests.

This commit is contained in:
GabrieleRadice
2026-04-29 16:39:26 +02:00
parent c3bdcdcc36
commit 87d7cf6a5f
9 changed files with 31 additions and 10 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()) + "\t";
return s + " ".repeat(w - s.length());
}
}