Removes the unused getCorners method

This commit is contained in:
Kristian Knarvik 2021-10-15 19:24:15 +02:00
parent 6e658003e0
commit d45af537cd

View File

@ -33,18 +33,6 @@ public class GateLayout {
readLayout();
}
/**
* Gets two of the corners of the gate layout creating the smallest box the gate can be contained within
*
* @return <p>Two of the gate's corners</p>
*/
public RelativeBlockVector[] getCorners() {
return new RelativeBlockVector[]{
new RelativeBlockVector(0, 0, 0),
new RelativeBlockVector(layout[0].length - 1, layout.length - 1, 1)
};
}
/**
* Gets the character array describing this layout
*