X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=netconf%2Fnetconf-netty-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Fnettyutil%2Fhandler%2FBufferedWriter.java;h=1ec0af6ef1ce192561fa4837a232937d5257d31b;hb=5798be3510627fb77585d7d49e91f0602d78417f;hp=7f3dd3854fdf23df5cefbeab7165b277f999b212;hpb=6d7e12bf3ef64e5004703a1d540e7e26f30a9595;p=netconf.git diff --git a/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/handler/BufferedWriter.java b/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/handler/BufferedWriter.java index 7f3dd3854f..1ec0af6ef1 100644 --- a/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/handler/BufferedWriter.java +++ b/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/handler/BufferedWriter.java @@ -66,6 +66,7 @@ public final class BufferedWriter extends Writer { } @Override + @SuppressWarnings("checkstyle:hiddenField") public void write(final char[] buffer, final int offset, final int length) throws IOException { if ((offset < 0) || (offset > buffer.length) || (length < 0) || ((offset + length) > buffer.length) || ((offset + length) < 0)) {