From: Robert Varga Date: Fri, 14 Oct 2022 00:32:01 +0000 (+0200) Subject: Fix a typo X-Git-Tag: v4.0.3~46 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=d1539775a087395637ca446850a55bce1367baad;p=netconf.git Fix a typo 'underlyinch' vs 'underlying'. Change-Id: Icc224eadb60cb6029caafdc9e9bb603638e57bce Signed-off-by: Robert Varga --- diff --git a/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/handler/ssh/client/AsyncSshHandlerWriter.java b/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/handler/ssh/client/AsyncSshHandlerWriter.java index d13d45a238..01284e308a 100644 --- a/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/handler/ssh/client/AsyncSshHandlerWriter.java +++ b/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/handler/ssh/client/AsyncSshHandlerWriter.java @@ -94,7 +94,7 @@ public final class AsyncSshHandlerWriter implements AutoCloseable { asyncIn.writeBuffer(toBuffer(byteBufMsg)).addListener(future -> { // synchronized block due to deadlock that happens on ssh window resize - // writes and pending writes would lock the underlyinch channel session + // writes and pending writes would lock the underlying channel session // window resize write would try to write the message on an already locked channelSession, // while the pending write was in progress from the write callback synchronized (asyncInLock) {