Skip to content
This repository has been archived by the owner on Dec 31, 2024. It is now read-only.

Commit

Permalink
refactor: Remove println calls
Browse files Browse the repository at this point in the history
  • Loading branch information
TopchetoEU committed Sep 21, 2022
1 parent 2c6c230 commit 24baba1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,6 @@ private static void myFill(MatrixStack matrices, float x1, float y1, float x2, f
p3.multiply(1 / p3.getW());
p4.multiply(1 / p4.getW());

// System.out.println(p1.getZ());

if (checkZ(p1.getZ()) && checkZ(p2.getZ()) && checkZ(p3.getZ()) && checkZ(p4.getZ())) {
BufferBuilder bufferBuilder = Tessellator.getInstance().getBuffer();
RenderSystem.enableBlend();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ public void render(MatrixStack matrices, int mouseX, int mouseY, float delta) {
drawHorizontalLine(matrices, 15, width - 15, (int)y2 - 5, 0xFFFFFFFF);
drawVerticalLine(matrices, 15, y1 - 3, y2 - 5, 0xFFFFFFFF);
drawVerticalLine(matrices, width - 15, y1 - 3, y2 - 5, 0xFFFFFFFF);
System.out.println(hoveredElement.getName());
break;
}

Expand All @@ -115,7 +114,6 @@ public void close() {
@Override
public boolean mouseClicked(double mouseX, double mouseY, int button) {
if (button == 0 && hoveredElement != null) {
System.out.print(hoveredElement.getName());
selectAction.onSelect(hoveredElement);
selectedElement = hoveredElement;
close();
Expand Down

0 comments on commit 24baba1

Please sign in to comment.