3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-19 22:30:05 +02:00

Made Polygonal2DRegion(LocalWorld) invoke one of the other constructors.

Dieser Commit ist enthalten in:
TomyLobo 2012-01-03 15:52:21 +01:00
Ursprung 91bb159a80
Commit 2cc0087524

Datei anzeigen

@ -59,12 +59,8 @@ public class Polygonal2DRegion implements Region {
* @param world
*/
public Polygonal2DRegion(LocalWorld world) {
points = new ArrayList<BlockVector2D>();
minY = 0;
maxY = 0;
this(world, Collections.<BlockVector2D>emptyList(), 0, 0);
hasY = false;
this.world = world;
recalculate();
}
/**