From 95084eff70270c79e3f710de7dececd69e129c77 Mon Sep 17 00:00:00 2001 From: TheBusyBiscuit Date: Wed, 7 Oct 2020 18:32:36 +0200 Subject: [PATCH] Added empty lines --- CONTRIBUTING.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6121afc21..e214eb1d8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -146,6 +146,7 @@ Try to stay inline with the code that surrounds you, having an entire package or * We do not enforce any particular width or column limit, but try to prevent your lines from becoming too long. * Annotations for methods or fields should never go on the same line, place them on the line above. * Comments should never go on the same line as code! Always above or below. +* Make sure that empty lines are truly empty, they should not contain any whitespace characters. * Empty blocks like constructors should not occupy more than one line. (e.g. `private MyClass() {}`) * Modifiers for classes and fields must follow this order:
`(public/protected/private) (abstract) (static) (final)`