Removed deprecated methods.
getNote() that returns a byte has been replaced by getRawNote(). teleportTo(Location) has been replaced by teleport(location). teleportTo(Entity) has been replaced by teleport(Entity). SnowForm event has been replaced by BlockForm event. By: EvilSeph <evilseph@gmail.com>
This commit is contained in:
@@ -8,15 +8,6 @@ import org.bukkit.Note;
|
||||
*/
|
||||
public interface NoteBlock extends BlockState {
|
||||
|
||||
/**
|
||||
* Gets the note.
|
||||
*
|
||||
* @return
|
||||
* @deprecated use {@link #getRawNote()} instead
|
||||
*/
|
||||
@Deprecated
|
||||
public byte getNote();
|
||||
|
||||
/**
|
||||
* Gets the note.
|
||||
*
|
||||
@@ -24,15 +15,6 @@ public interface NoteBlock extends BlockState {
|
||||
*/
|
||||
public byte getRawNote();
|
||||
|
||||
/**
|
||||
* Set the note.
|
||||
*
|
||||
* @param note
|
||||
* @deprecated use {@link #setRawNote(byte)} instead
|
||||
*/
|
||||
@Deprecated
|
||||
public void setNote(byte note);
|
||||
|
||||
/**
|
||||
* Set the note.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user