Remove reundant modifiers

This commit is contained in:
grondag 2019-06-05 05:52:33 -07:00
parent 0275a7756e
commit 9ff0718ada

View file

@ -25,5 +25,5 @@ import net.fabricmc.indigo.Indigo;
interface AoVertexClampFunction {
float clamp(float x);
static final AoVertexClampFunction CLAMP_FUNC = Indigo.FIX_EXTERIOR_VERTEX_LIGHTING ? x -> x < 0f ? 0f : (x > 1f ? 1f : x) : x -> x;
AoVertexClampFunction CLAMP_FUNC = Indigo.FIX_EXTERIOR_VERTEX_LIGHTING ? x -> x < 0f ? 0f : (x > 1f ? 1f : x) : x -> x;
}