mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-19 13:38:44 +01:00
SPIGOT-5245: Unneeded cast to WorldNBTStorage in CraftWorld#getWorldFolder
By: md_5 <git@md-5.net>
This commit is contained in:
parent
d67f427648
commit
aeb3ecc654
1 changed files with 1 additions and 1 deletions
|
@ -1778,7 +1778,7 @@ public class CraftWorld implements World {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public File getWorldFolder() {
|
public File getWorldFolder() {
|
||||||
return ((WorldNBTStorage) world.getDataManager()).getDirectory();
|
return world.getDataManager().getDirectory();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Reference in a new issue