Drop lombok, it has been causing too much confusion
Basically the result of the Delombok function, except we use IntelliJ's equals, hashCode and toString and don't re-organize imports (cause that breaks the preprocessor) and a bunch of manual cleanup was necessary (and half the classes weren't even converted).
This commit is contained in:
@@ -1,11 +1,9 @@
|
||||
package com.replaymod.render.frame;
|
||||
|
||||
import com.replaymod.render.rendering.Frame;
|
||||
import lombok.Getter;
|
||||
import org.apache.commons.lang3.Validate;
|
||||
|
||||
public class ODSOpenGlFrame implements Frame {
|
||||
@Getter
|
||||
private final CubicOpenGlFrame left, right;
|
||||
|
||||
public ODSOpenGlFrame(CubicOpenGlFrame left, CubicOpenGlFrame right) {
|
||||
@@ -18,4 +16,12 @@ public class ODSOpenGlFrame implements Frame {
|
||||
public int getFrameId() {
|
||||
return left.getFrameId();
|
||||
}
|
||||
|
||||
public CubicOpenGlFrame getLeft() {
|
||||
return this.left;
|
||||
}
|
||||
|
||||
public CubicOpenGlFrame getRight() {
|
||||
return this.right;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user