Remove overload of joinToString with 5 parameters and it's usage from java code.
This commit is contained in:
@@ -463,7 +463,7 @@ public class ErrorUtils {
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return constructor.toString() + (arguments.isEmpty() ? "" : joinToString(arguments, ", ", "<", ">", -1, "..."));
|
||||
return constructor.toString() + (arguments.isEmpty() ? "" : joinToString(arguments, ", ", "<", ">", -1, "...", null));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user