Remove redundant public and abstract modifiers from interfaces (#3560)

* Remove redundant public modifiers from interfaces
* Remove redundant abstract modifiers from interfaces

Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
Wouter Born
2023-04-20 20:22:58 +02:00
committed by GitHub
parent cfb2fa1be8
commit 3c6d855d4b
62 changed files with 225 additions and 203 deletions
@@ -25,7 +25,7 @@ import org.eclipse.jdt.annotation.Nullable;
@TagInfo(id = "Location")
public interface Location extends Tag {
public static String name() {
static String name() {
return "Location";
}