Global ID -> Id rename

By: Erik Broes <erikbroes@grum.nl>
This commit is contained in:
Bukkit/Spigot
2011-01-15 20:53:43 +01:00
parent 4d7b10c59d
commit 550e518848
8 changed files with 35 additions and 36 deletions

View File

@@ -25,7 +25,7 @@ public class MaterialData {
}
public MaterialData(final Material type, final byte data) {
this(type.getID(), data);
this(type.getId(), data);
}
/**
@@ -56,9 +56,9 @@ public class MaterialData {
}
/**
* Gets the Material ID that this MaterialData represents
* Gets the Material Id that this MaterialData represents
*
* @return Material ID represented by this MaterialData
* @return Material Id represented by this MaterialData
*/
public int getItemTypeId() {
return type;