mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-04 11:56:07 +00:00
Fixed EditSession's Javadocs regarding notifyAdjacent.
This commit is contained in:
parent
fe25d08267
commit
f688b3daa5
@ -77,7 +77,7 @@ import static com.sk89q.worldedit.regions.Regions.*;
|
||||
public class EditSession implements Extent {
|
||||
|
||||
/**
|
||||
* Used by {@link #setBlock(Vector, BaseBlock, boolean, Level)} to
|
||||
* Used by {@link #setBlock(Vector, BaseBlock, Level)} to
|
||||
* determine which {@link Extent}s should be bypassed.
|
||||
*/
|
||||
public enum Level {
|
||||
@ -363,7 +363,6 @@ public class EditSession implements Extent {
|
||||
*
|
||||
* @param position the position to set the block at
|
||||
* @param block the block
|
||||
* @param notifyAdjacent true to notify adjacent
|
||||
* @param level the level
|
||||
* @return whether the block changed
|
||||
*/
|
||||
@ -386,7 +385,7 @@ public class EditSession implements Extent {
|
||||
* @param position the position to set the block at
|
||||
* @param block the block
|
||||
* @return whether the block changed
|
||||
* @deprecated Use {@link #setBlock(Vector, BaseBlock, boolean, Level)}
|
||||
* @deprecated Use {@link #setBlock(Vector, BaseBlock, Level)}
|
||||
*/
|
||||
@Deprecated
|
||||
public boolean rawSetBlock(Vector position, BaseBlock block) {
|
||||
@ -403,7 +402,7 @@ public class EditSession implements Extent {
|
||||
* @param position the position to set the block at
|
||||
* @param block the block
|
||||
* @return whether the block changed
|
||||
* @deprecated Use {@link #setBlock(Vector, BaseBlock, boolean, Level)}
|
||||
* @deprecated Use {@link #setBlock(Vector, BaseBlock, Level)}
|
||||
*/
|
||||
@Deprecated
|
||||
public boolean smartSetBlock(Vector position, BaseBlock block) {
|
||||
|
Loading…
Reference in New Issue
Block a user