SliderComponent: Updated code formatting again

This commit is contained in:
noil 2021-01-07 01:22:38 -05:00
parent aa81f60497
commit c26d24a5a1
1 changed files with 1 additions and 4 deletions

View File

@ -12,9 +12,6 @@ import net.minecraft.client.Minecraft;
import java.text.DecimalFormat;
/**
* SliderComponent
* - strictly for values atm (v3.1), will be used around the entire hud later on.
*
* @author noil
*/
public final class SliderComponent extends HudComponent {
@ -25,7 +22,7 @@ public final class SliderComponent extends HudComponent {
private TextComponent textComponent;
protected final DecimalFormat decimalFormat = new DecimalFormat("#.#");
protected boolean sliding = false;
protected boolean sliding;
protected float lastPositionX = -1;
public SliderComponent(String name, Value value) {