Remove unneeded annotations (when the method wasn't obfuscated to begin with)

This commit is contained in:
Lucwousin
2019-07-09 19:48:18 +02:00
parent 5244775148
commit 02ba0bbe57
15 changed files with 2 additions and 54 deletions

View File

@@ -51,14 +51,10 @@ public class IterableNodeDequeDescendingIterator implements Iterator {
this.last = null;
}
@Export("hasNext")
@ObfuscatedName("hasNext")
public boolean hasNext() {
return this.deque.sentinel != this.head;
}
@Export("next")
@ObfuscatedName("next")
public Object next() {
Node var1 = this.head;
if (var1 == this.deque.sentinel) {
@@ -72,8 +68,6 @@ public class IterableNodeDequeDescendingIterator implements Iterator {
return var1;
}
@ObfuscatedName("remove")
@Export("remove")
public void remove() {
if (this.last == null) {
throw new IllegalStateException();