mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-12 04:23:54 +00:00
Address javadoc violations
This commit is contained in:
@ -37,10 +37,10 @@ import java.util.stream.Collectors;
|
||||
/**
|
||||
* Represents an abstract regeneration handler.
|
||||
*
|
||||
* @param <IChunkAccess> the type of the {@Code IChunkAccess} of the current Minecraft implementation
|
||||
* @param <ProtoChunk> the type of the {@Code ProtoChunk} of the current Minecraft implementation
|
||||
* @param <Chunk> the type of the {@Code Chunk} of the current Minecraft implementation
|
||||
* @param <ChunkStatus> the type of the {@Code ChunkStatusWrapper} wrapping the {@Code ChunkStatus} enum
|
||||
* @param <IChunkAccess> the type of the {@code IChunkAccess} of the current Minecraft implementation
|
||||
* @param <ProtoChunk> the type of the {@code ProtoChunk} of the current Minecraft implementation
|
||||
* @param <Chunk> the type of the {@code Chunk} of the current Minecraft implementation
|
||||
* @param <ChunkStatus> the type of the {@code ChunkStatusWrapper} wrapping the {@code ChunkStatus} enum
|
||||
*/
|
||||
public abstract class Regenerator<IChunkAccess, ProtoChunk extends IChunkAccess, Chunk extends IChunkAccess, ChunkStatus extends Regenerator.ChunkStatusWrapper<IChunkAccess>> {
|
||||
|
||||
|
@ -21,7 +21,7 @@ public class MinecraftVersion implements Comparable<MinecraftVersion> {
|
||||
* Construct a new version with major, minor and release version.
|
||||
*
|
||||
* @param major Major part of the version, only {@code 1} would make sense.
|
||||
* @param minor Minor part, full updates, e.g. Nether & Caves & Cliffs
|
||||
* @param minor Minor part, full updates, e.g. Nether & Caves & Cliffs
|
||||
* @param release Release, changes for the server software during a minor update.
|
||||
*/
|
||||
public MinecraftVersion(int major, int minor, int release) {
|
||||
|
Reference in New Issue
Block a user