Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-19 17:30:08 +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;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the ID of this biome.
|
||||
*
|
||||
* @return The id
|
||||
* @since TODO
|
||||
*/
|
||||
@Override
|
||||
public String id() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public int getLegacyId() {
|
||||
return legacyId;
|
||||
}
|
||||
@ -64,12 +75,12 @@ public class BiomeType implements RegistryItem, Keyed, BiomePattern {
|
||||
/**
|
||||
* Gets the ID of this biome.
|
||||
*
|
||||
* @return The id
|
||||
* @return the id
|
||||
* @deprecated use {@link #id()}
|
||||
*/
|
||||
@Deprecated(forRemoval = true, since = "TODO")
|
||||
@Override
|
||||
public String id() {
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
|
@ -46,11 +46,20 @@ public class EntityType implements RegistryItem, Keyed {
|
||||
*
|
||||
* @return the id
|
||||
* @since TODO
|
||||
*/
|
||||
public String id() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the id of this entity type.
|
||||
*
|
||||
* @return the id
|
||||
* @deprecated use {@link #id()}
|
||||
*/
|
||||
@Deprecated(forRemoval = true, since = "TODO")
|
||||
@Override
|
||||
public String id() {
|
||||
public String getId() {
|
||||
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
|
||||
* @since TODO
|
||||
*/
|
||||
@Override
|
||||
public String id() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the ID of this fluid.
|
||||
*
|
||||
* @return the id
|
||||
* @deprecated use {@link #id()}
|
||||
*/
|
||||
@Deprecated(forRemoval = true, since = "TODO")
|
||||
@Override
|
||||
public String id() {
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren