mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
Fix StringIndexOutOfBoundsException in ConnectionException
This commit is contained in:
parent
aa90cfadc5
commit
6c892fec96
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue