Issue #10402 - rename ServletChannelState open() to openOutput()
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
parent
1c1cc0296b
commit
0a2cfab4a8
|
@ -157,7 +157,7 @@ public class ServletChannel
|
|||
_request = request;
|
||||
_response = response;
|
||||
_callback = callback;
|
||||
_state.open();
|
||||
_state.openOutput();
|
||||
|
||||
if (LOG.isDebugEnabled())
|
||||
LOG.debug("associate {} -> {},{},{}",
|
||||
|
|
|
@ -168,7 +168,7 @@ public class ServletChannelState
|
|||
}
|
||||
}
|
||||
|
||||
public void open()
|
||||
public void openOutput()
|
||||
{
|
||||
try (AutoLock ignored = lock())
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue