Fix StringIndexOutOfBoundsException in ConnectionException

This commit is contained in:
Florian Schmaus 2014-09-29 08:58:39 +02:00
parent aa90cfadc5
commit 6c892fec96
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ public class SmackException extends Exception {
sb.append(", ");
}
// Remove the last whitespace
sb.deleteCharAt(sb.length());
sb.deleteCharAt(sb.length() - 1);
return new ConnectionException(sb.toString(), failedAddresses);
}