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.
This commit is contained in:
Aayush Atharva 2020-11-02 19:37:51 +05:30 committed by GitHub
parent 0b0b446d38
commit 1492374f99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,5 +25,4 @@ public interface Http2Frame {
* Returns the name of the HTTP/2 frame e.g. DATA, GOAWAY, etc.
*/
String name();
}