Skip to content
Snippets Groups Projects
Verified Commit 15c8ec14 authored by Miles Vella's avatar Miles Vella
Browse files

remove useless static

parent 89ab8731
No related branches found
No related tags found
No related merge requests found
Pipeline #151260 failed
......@@ -681,15 +681,15 @@ public static final class <name>Constructor implements BObject {
private <name>Constructor() {
}
public static <name>Destructor inverse() {
public <name>Destructor inverse() {
return <name>Destructor.INSTANCE;
}
public static <name> functionCall(<subtype> value) {
public <name> functionCall(<subtype> value) {
return new <name>(value);
}
public static BBoolean isInRange(<freetype> o) {
public BBoolean isInRange(<freetype> o) {
return new BBoolean(o instanceof <name>);
}
......@@ -724,7 +724,7 @@ public static final class <name>Destructor implements BObject {
private <name>Destructor() {
}
public static <subtype> functionCall(<freetype> value) {
public <subtype> functionCall(<freetype> value) {
return ((<name>) value).getValue();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment