Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-20 01:40:06 +01:00
Cleanup
Dieser Commit ist enthalten in:
Ursprung
b4ed044981
Commit
ca8ac01946
@ -43,6 +43,17 @@ public class BiomeType implements RegistryItem, Keyed, BiomePattern {
|
|||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the ID of this biome.
|
||||||
|
*
|
||||||
|
* @return The id
|
||||||
|
* @since TODO
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String id() {
|
||||||
|
return this.id;
|
||||||
|
}
|
||||||
|
|
||||||
public int getLegacyId() {
|
public int getLegacyId() {
|
||||||
return legacyId;
|
return legacyId;
|
||||||
}
|
}
|
||||||
@ -64,12 +75,12 @@ public class BiomeType implements RegistryItem, Keyed, BiomePattern {
|
|||||||
/**
|
/**
|
||||||
* Gets the ID of this biome.
|
* Gets the ID of this biome.
|
||||||
*
|
*
|
||||||
* @return The id
|
* @return the id
|
||||||
* @deprecated use {@link #id()}
|
* @deprecated use {@link #id()}
|
||||||
*/
|
*/
|
||||||
@Deprecated(forRemoval = true, since = "TODO")
|
@Deprecated(forRemoval = true, since = "TODO")
|
||||||
@Override
|
@Override
|
||||||
public String id() {
|
public String getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -46,11 +46,20 @@ public class EntityType implements RegistryItem, Keyed {
|
|||||||
*
|
*
|
||||||
* @return the id
|
* @return the id
|
||||||
* @since TODO
|
* @since TODO
|
||||||
|
*/
|
||||||
|
public String id() {
|
||||||
|
return this.id;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the id of this entity type.
|
||||||
|
*
|
||||||
|
* @return the id
|
||||||
* @deprecated use {@link #id()}
|
* @deprecated use {@link #id()}
|
||||||
*/
|
*/
|
||||||
@Deprecated(forRemoval = true, since = "TODO")
|
@Deprecated(forRemoval = true, since = "TODO")
|
||||||
@Override
|
@Override
|
||||||
public String id() {
|
public String getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -40,15 +40,25 @@ public class FluidType implements RegistryItem, Keyed {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the ID of this block.
|
* Gets the ID of this fluid.
|
||||||
*
|
*
|
||||||
* @return The id
|
* @return The id
|
||||||
* @since TODO
|
* @since TODO
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String id() {
|
||||||
|
return this.id;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the ID of this fluid.
|
||||||
|
*
|
||||||
|
* @return the id
|
||||||
* @deprecated use {@link #id()}
|
* @deprecated use {@link #id()}
|
||||||
*/
|
*/
|
||||||
@Deprecated(forRemoval = true, since = "TODO")
|
@Deprecated(forRemoval = true, since = "TODO")
|
||||||
@Override
|
@Override
|
||||||
public String id() {
|
public String getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren