project: Rev 202

This commit is contained in:
Owain van Brakel
2021-12-14 18:20:58 +01:00
parent e974585ce8
commit 7c7bf0901a
406 changed files with 39725 additions and 39842 deletions

View File

@@ -18,8 +18,8 @@ public final class MouseWheelHandler implements class154, MouseWheelListener {
int rotation;
MouseWheelHandler() {
this.rotation = 0; // L: 8
} // L: 10
this.rotation = 0;
}
@ObfuscatedName("c")
@ObfuscatedSignature(
@@ -28,8 +28,8 @@ public final class MouseWheelHandler implements class154, MouseWheelListener {
)
@Export("addTo")
void addTo(Component var1) {
var1.addMouseWheelListener(this); // L: 13
} // L: 14
var1.addMouseWheelListener(this);
}
@ObfuscatedName("b")
@ObfuscatedSignature(
@@ -38,8 +38,8 @@ public final class MouseWheelHandler implements class154, MouseWheelListener {
)
@Export("removeFrom")
void removeFrom(Component var1) {
var1.removeMouseWheelListener(this); // L: 17
} // L: 18
var1.removeMouseWheelListener(this);
}
@ObfuscatedName("p")
@ObfuscatedSignature(
@@ -48,12 +48,12 @@ public final class MouseWheelHandler implements class154, MouseWheelListener {
)
@Export("useRotation")
public synchronized int useRotation() {
int var1 = this.rotation; // L: 26
this.rotation = 0; // L: 27
return var1; // L: 28
int var1 = this.rotation;
this.rotation = 0;
return var1;
}
public synchronized void mouseWheelMoved(MouseWheelEvent var1) {
this.rotation += var1.getWheelRotation(); // L: 22
} // L: 23
this.rotation += var1.getWheelRotation();
}
}