Global ID -> Id rename

This commit is contained in:
Erik Broes
2011-01-15 20:53:43 +01:00
parent ce1247aa2e
commit b8072b8a37
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;