Remove deprecated Region#contract/expand(Vector) methods

Those methods hid varargs versions which are not deprecated
This commit is contained in:
aumgn
2012-11-12 10:36:44 +01:00
parent 574f162019
commit da400ffdeb
3 changed files with 0 additions and 32 deletions

View File

@ -57,16 +57,6 @@ public abstract class AbstractRegion implements Region {
this.world = world;
}
@Deprecated
public void expand(Vector change) throws RegionOperationException {
expand(new Vector[] { change });
}
@Deprecated
public void contract(Vector change) throws RegionOperationException {
contract(new Vector[] { change });
}
public void shift(Vector change) throws RegionOperationException {
expand(change);
contract(change);