Skip to content

Commit

Permalink
Correct typo in a method name
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1684353 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Konstantin Kolinko committed Jun 9, 2015
1 parent 2198138 commit f095d17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/org/apache/coyote/http2/Http2UpgradeHandler.java
Expand Up @@ -255,7 +255,7 @@ public SocketState upgradeDispatch(SocketStatus status) {
if (log.isDebugEnabled()) { if (log.isDebugEnabled()) {
log.debug(sm.getString("upgradeHandler.connectionError"), ce); log.debug(sm.getString("upgradeHandler.connectionError"), ce);
} }
closeConnecion(ce); closeConnection(ce);
break; break;
} catch (IOException ioe) { } catch (IOException ioe) {
if (log.isDebugEnabled()) { if (log.isDebugEnabled()) {
Expand Down Expand Up @@ -367,7 +367,7 @@ private void closeStream(StreamError se) throws IOException {
} }




private void closeConnecion(Http2Exception ce) { private void closeConnection(Http2Exception ce) {
// Write a GOAWAY frame. // Write a GOAWAY frame.
byte[] fixedPayload = new byte[8]; byte[] fixedPayload = new byte[8];
// TODO needs to be correct value // TODO needs to be correct value
Expand Down

0 comments on commit f095d17

Please sign in to comment.