Fixed javadoc

This commit is contained in:
themode 2020-11-08 15:57:00 +01:00
parent a574c1fe2a
commit 682c660857
3 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ public class DataImpl implements Data {
protected final ConcurrentHashMap<String, Object> data = new ConcurrentHashMap<>();
/**
* Data key -> Class
* Data key = Class
* Used to know the type of an element of this data object (for serialization purpose)
*/
protected final ConcurrentHashMap<String, Class> dataType = new ConcurrentHashMap<>();

View File

@ -1446,7 +1446,7 @@ public class Player extends LivingEntity implements CommandSender {
chunk.removeViewer(this);
}
// Not sure what it does...
// Update client render distance
updateViewPosition(newChunk);
// Load new chunks

View File

@ -165,7 +165,7 @@ public abstract class Instance implements BlockModifier, EventHandler, DataConta
* <p>
* WARNING: during unloading, all entities other than {@link Player} will be removed.
* <p>
* For {@link InstanceContainer} it is done during {@link InstanceContainer#tick(long)}
* For {@link InstanceContainer} it is done during the next {@link InstanceContainer#tick(long)}.
*
* @param chunk the chunk to unload
*/