mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-06-19 07:11:14 +00:00
remove unused class
This commit is contained in:
-28
@@ -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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user