summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/block/Sign.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/bukkit/block/Sign.java')
-rw-r--r--src/main/java/org/bukkit/block/Sign.java16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/main/java/org/bukkit/block/Sign.java b/src/main/java/org/bukkit/block/Sign.java
index 0cbdd39a..9e7717ca 100644
--- a/src/main/java/org/bukkit/block/Sign.java
+++ b/src/main/java/org/bukkit/block/Sign.java
@@ -38,26 +38,22 @@ public interface Sign extends BlockState {
/**
* Marks whether this sign can be edited by players.
* <br>
- * This is a special value, which is not persisted. It should only be if a
- * placed sign is manipulated during the BlockPlaceEvent. Behaviour outside
- * of this event is undefined.
+ * This is a special value, which is not persisted. It should only be set if
+ * a placed sign is manipulated during the BlockPlaceEvent. Behaviour
+ * outside of this event is undefined.
*
* @return if this sign is currently editable
- * @deprecated draft API
*/
- @Deprecated
public boolean isEditable();
/**
* Marks whether this sign can be edited by players.
* <br>
- * This is a special value, which is not persisted. It should only be if a
- * placed sign is manipulated during the BlockPlaceEvent. Behaviour outside
- * of this event is undefined.
+ * This is a special value, which is not persisted. It should only be set if
+ * a placed sign is manipulated during the BlockPlaceEvent. Behaviour
+ * outside of this event is undefined.
*
* @param editable if this sign is currently editable
- * @deprecated draft API
*/
- @Deprecated
public void setEditable(boolean editable);
}