removed unused lombok annotations

This commit is contained in:
2019-09-08 21:36:16 +01:00
parent 96017dba05
commit 3102122a89
2 changed files with 0 additions and 5 deletions

View File

@@ -1,6 +1,5 @@
package net.woggioni.worth.traversal;
import lombok.Getter;
import net.woggioni.worth.exception.NotImplementedException;
import net.woggioni.worth.value.ArrayValue;
import net.woggioni.worth.xface.Value;
@@ -13,7 +12,6 @@ class ArrayStackElement<T> extends AbstractStackElement<T> {
private final Iterator<Value> it;
@Getter
private int currentIndex;
private Value currentValue = null;

View File

@@ -1,6 +1,5 @@
package net.woggioni.worth.traversal;
import lombok.Getter;
import net.woggioni.worth.value.ObjectValue;
import net.woggioni.worth.xface.Value;
@@ -11,10 +10,8 @@ class ObjectStackElement<T> extends AbstractStackElement<T> {
private final Iterator<Map.Entry<String, Value>> it;
@Getter
private int currentIndex;
@Getter
private String currentKey;
private Value currentValue;