From 3dce4de50fdc9209dc9485f43c9baa5b0a8efb39 Mon Sep 17 00:00:00 2001 From: Aayush Atharva Date: Mon, 2 Nov 2020 19:37:51 +0530 Subject: [PATCH] Remove extra empty line (#10754) Motivation: `Http2Frame` has extra empty line after `String name();`. However, it should not be there. Modification: Removed extra empty line. Result: Empty-line code style now matching with other classes. --- .../src/main/java/io/netty/handler/codec/http2/Http2Frame.java | 1 - 1 file changed, 1 deletion(-) diff --git a/codec-http2/src/main/java/io/netty/handler/codec/http2/Http2Frame.java b/codec-http2/src/main/java/io/netty/handler/codec/http2/Http2Frame.java index 3e30bfedb2..799edaf7b7 100644 --- a/codec-http2/src/main/java/io/netty/handler/codec/http2/Http2Frame.java +++ b/codec-http2/src/main/java/io/netty/handler/codec/http2/Http2Frame.java @@ -25,5 +25,4 @@ public interface Http2Frame { * Returns the name of the HTTP/2 frame e.g. DATA, GOAWAY, etc. */ String name(); - }