Simplification

pull/190/head
M66B 4 years ago
parent 8c046e2f60
commit ddc6a3750d

@ -3270,15 +3270,8 @@ public class IMAPProtocol extends Protocol {
boolean done = false; // done reading responses?
notifyResponseHandlers(responses);
if (r.isUnTagged() && r.isOK()) // Still here
try {
DataOutputStream output = (DataOutputStream) getOutputStream();
output.writeBytes("DONE");
output.write(CRLF);
output.flush();
} catch (IOException ex) {
throw new ProtocolException("IDLE/DONE", ex);
}
if (r.isUnTagged() && r.isOK()) // Still here
idleAbort();
if (r.isBYE()) // shouldn't wait for command completion response
done = true;

Loading…
Cancel
Save