Simplification

This commit is contained in:
M66B 2020-12-28 13:12:27 +01:00
parent 8c046e2f60
commit ddc6a3750d
1 changed files with 2 additions and 9 deletions

View File

@ -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;