runelite-api: use lombok constructors for Vertex/Triangle

This commit is contained in:
Adam
2018-05-29 19:24:16 -04:00
parent 4b18dce38c
commit d6b5e31c9d
2 changed files with 0 additions and 14 deletions

View File

@@ -36,13 +36,6 @@ public class Triangle
private final Vertex b;
private final Vertex c;
public Triangle(Vertex a, Vertex b, Vertex c)
{
this.a = a;
this.b = b;
this.c = c;
}
/**
* Rotates the triangle by the given orientation.
*

View File

@@ -37,13 +37,6 @@ public class Vertex
private final int y;
private final int z;
public Vertex(int x, int y, int z)
{
this.x = x;
this.y = y;
this.z = z;
}
/**
* Rotates the triangle by the given orientation.
*