mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-23 04:22:05 +01:00
Fix whitespace errors in AbstractXMPPConnection
This commit is contained in:
parent
9f0420be4f
commit
8f2eefaeb0
1 changed files with 3 additions and 3 deletions
|
@ -1192,11 +1192,11 @@ public abstract class AbstractXMPPConnection implements XMPPConnection {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setReplyTimeout(long timeout) {
|
public void setReplyTimeout(long timeout) {
|
||||||
if (Long.MAX_VALUE - System.currentTimeMillis() < timeout) {
|
if (Long.MAX_VALUE - System.currentTimeMillis() < timeout) {
|
||||||
throw new IllegalArgumentException("Extremely long reply timeout");
|
throw new IllegalArgumentException("Extremely long reply timeout");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
replyTimeout = timeout;
|
replyTimeout = timeout;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue