Fix: Fixed "toString" Methods For Most Classes + AsciiTable.java Attempted Fix.
This commit is contained in:
@@ -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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user