Code style: move private constructors for singleton classes to the top of the file

This commit is contained in:
Luck
2019-03-05 12:36:09 +00:00
Unverified
parent 3726f6de41
commit 0a50df6557
43 changed files with 53 additions and 82 deletions
@@ -41,6 +41,7 @@ import java.util.Set;
* checks made by plugins.
*/
public final class PermissibleInjector {
private PermissibleInjector() {}
/**
* All permission checks made on standard Nukkit objects are effectively proxied to a
@@ -141,6 +142,4 @@ public final class PermissibleInjector {
}
}
private PermissibleInjector() {}
}