removed unused lombok annotations
This commit is contained in:
@@ -1,6 +1,5 @@
|
|||||||
package net.woggioni.worth.traversal;
|
package net.woggioni.worth.traversal;
|
||||||
|
|
||||||
import lombok.Getter;
|
|
||||||
import net.woggioni.worth.exception.NotImplementedException;
|
import net.woggioni.worth.exception.NotImplementedException;
|
||||||
import net.woggioni.worth.value.ArrayValue;
|
import net.woggioni.worth.value.ArrayValue;
|
||||||
import net.woggioni.worth.xface.Value;
|
import net.woggioni.worth.xface.Value;
|
||||||
@@ -13,7 +12,6 @@ class ArrayStackElement<T> extends AbstractStackElement<T> {
|
|||||||
|
|
||||||
private final Iterator<Value> it;
|
private final Iterator<Value> it;
|
||||||
|
|
||||||
@Getter
|
|
||||||
private int currentIndex;
|
private int currentIndex;
|
||||||
|
|
||||||
private Value currentValue = null;
|
private Value currentValue = null;
|
||||||
|
@@ -1,6 +1,5 @@
|
|||||||
package net.woggioni.worth.traversal;
|
package net.woggioni.worth.traversal;
|
||||||
|
|
||||||
import lombok.Getter;
|
|
||||||
import net.woggioni.worth.value.ObjectValue;
|
import net.woggioni.worth.value.ObjectValue;
|
||||||
import net.woggioni.worth.xface.Value;
|
import net.woggioni.worth.xface.Value;
|
||||||
|
|
||||||
@@ -11,10 +10,8 @@ class ObjectStackElement<T> extends AbstractStackElement<T> {
|
|||||||
|
|
||||||
private final Iterator<Map.Entry<String, Value>> it;
|
private final Iterator<Map.Entry<String, Value>> it;
|
||||||
|
|
||||||
@Getter
|
|
||||||
private int currentIndex;
|
private int currentIndex;
|
||||||
|
|
||||||
@Getter
|
|
||||||
private String currentKey;
|
private String currentKey;
|
||||||
|
|
||||||
private Value currentValue;
|
private Value currentValue;
|
||||||
|
Reference in New Issue
Block a user