3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-11-10 05:20:04 +01:00

Made the fields of Polygonal2DRegionSelector private.

Dieser Commit ist enthalten in:
TomyLobo 2012-01-03 03:42:39 +01:00
Ursprung b05a72fea1
Commit e598f8eaa0

Datei anzeigen

@ -40,8 +40,8 @@ import com.sk89q.worldedit.cui.SelectionShapeEvent;
* @author sk89q
*/
public class Polygonal2DRegionSelector implements RegionSelector, CUIRegion {
protected BlockVector pos1;
protected Polygonal2DRegion region;
private BlockVector pos1;
private Polygonal2DRegion region;
public Polygonal2DRegionSelector(LocalWorld world) {
region = new Polygonal2DRegion(world);
@ -212,6 +212,4 @@ public class Polygonal2DRegionSelector implements RegionSelector, CUIRegion {
public String getLegacyTypeID() {
return "polygon2d";
}
}