mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-04 00:45:57 +00:00
remove unused class
This commit is contained in:
parent
c8bb538c36
commit
02be2969a2
@ -1,28 +0,0 @@
|
|||||||
package com.dfsek.terra.addons.biome;
|
|
||||||
|
|
||||||
|
|
||||||
import com.dfsek.paralithic.functions.dynamic.DynamicFunction;
|
|
||||||
|
|
||||||
|
|
||||||
public class BlankFunction implements DynamicFunction {
|
|
||||||
private final int args;
|
|
||||||
|
|
||||||
public BlankFunction(int args) {
|
|
||||||
this.args = args;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public double eval(double... d) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getArgNumber() {
|
|
||||||
return args;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isStateless() {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user