mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-02 11:26:42 +00:00
Remove deprecated Region#contract/expand(Vector) methods
Those methods hid varargs versions which are not deprecated
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user