Removed unnecessary 'if' condition

This commit is contained in:
Trustin Lee 2009-02-09 09:13:45 +00:00
parent e757135583
commit 03de679b17

View File

@ -160,7 +160,6 @@ class LocalChannel extends AbstractChannel {
return; return;
} }
if (pairedChannel == null || !isOpen()) {
// Channel is closed or not connected yet - notify as failures. // Channel is closed or not connected yet - notify as failures.
Exception cause; Exception cause;
if (isOpen()) { if (isOpen()) {
@ -180,4 +179,3 @@ class LocalChannel extends AbstractChannel {
} }
} }
} }
}