Unused methods removed
This commit is contained in:
@@ -69,18 +69,6 @@ public class dbItemHandler extends dbHandlerBase {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean DELETE_ITEM(final Item item) {
|
|
||||||
prepareCallable("DELETE FROM `object` WHERE `UID`=? && `type`='item' limit 1");
|
|
||||||
setLong(1, (long) item.getObjectUUID());
|
|
||||||
return (executeUpdate() > 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean DELETE_ITEM(final int itemUUID) {
|
|
||||||
prepareCallable("DELETE FROM `object` WHERE `UID`=? && `type`='item' limit 1");
|
|
||||||
setLong(1, (long) itemUUID);
|
|
||||||
return (executeUpdate() > 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
public String GET_OWNER(int ownerID) {
|
public String GET_OWNER(int ownerID) {
|
||||||
prepareCallable("SELECT `type` FROM `object` WHERE `UID`=?");
|
prepareCallable("SELECT `type` FROM `object` WHERE `UID`=?");
|
||||||
setLong(1, (long) ownerID);
|
setLong(1, (long) ownerID);
|
||||||
|
|||||||
Reference in New Issue
Block a user