Remove overload of joinToString with 5 parameters and it's usage from java code.

This commit is contained in:
Ilya Gorbunov
2015-05-12 13:35:05 +03:00
parent 7ffc1e13d9
commit 1fc5c39c22
3 changed files with 1 additions and 3 deletions
@@ -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));
}
}