Issue #10402 - rename ServletChannelState open() to openOutput()

Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
Lachlan Roberts 2023-08-29 14:59:59 +10:00
parent 1c1cc0296b
commit 0a2cfab4a8
2 changed files with 2 additions and 2 deletions

View File

@ -157,7 +157,7 @@ public class ServletChannel
_request = request;
_response = response;
_callback = callback;
_state.open();
_state.openOutput();
if (LOG.isDebugEnabled())
LOG.debug("associate {} -> {},{},{}",

View File

@ -168,7 +168,7 @@ public class ServletChannelState
}
}
public void open()
public void openOutput()
{
try (AutoLock ignored = lock())
{