Fix javadoc warnings (#1286)

Signed-off-by: liach <liach@users.noreply.github.com>

Co-authored-by: liach <liach@users.noreply.github.com>
This commit is contained in:
liach 2020-04-18 08:55:18 -05:00 committed by GitHub
parent 6455e15fcb
commit 7180726b1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 17 additions and 16 deletions

View File

@ -685,7 +685,7 @@ task genFakeSource(dependsOn: ["buildYarnTiny", "mapNamedJar"]) {
}
}
tasks.getByName("javadoc") {
javadoc {
dependsOn genFakeSource
dependsOn downloadMcLibs
group = "javadoc generation"

View File

@ -6,12 +6,12 @@ CLASS net/minecraft/class_4492 com/mojang/blaze3d/platform/FramebufferInfo
FIELD field_20459 COLOR_ATTACHMENT I
FIELD field_20460 DEPTH_ATTACHMENT I
FIELD field_20461 FRAME_BUFFER_COMPLETE I
COMMENT {@see GL30#GL_FRAMEBUFFER_COMPLETE}
COMMENT @see org.lwjgl.opengl.GL30#GL_FRAMEBUFFER_COMPLETE
FIELD field_20462 FRAME_BUFFER_INCOMPLETE_ATTACHMENT I
COMMENT {@see GL30#GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT}
COMMENT @see org.lwjgl.opengl.GL30#GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT
FIELD field_20463 FRAME_BUFFER_INCOMPLETE_MISSING_ATTACHMENT I
COMMENT {@see GL30#GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT}
COMMENT @see org.lwjgl.opengl.GL30#GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT
FIELD field_20464 FRAME_BUFFER_INCOMPLETE_DRAW_BUFFER I
COMMENT {@see GL30#GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER}
COMMENT @see org.lwjgl.opengl.GL30#GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER
FIELD field_20465 FRAME_BUFFER_INCOMPLETE_READ_BUFFER I
COMMENT {@see GL30#GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER}
COMMENT @see org.lwjgl.opengl.GL30#GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER

View File

@ -176,11 +176,11 @@ CLASS net/minecraft/class_4493 com/mojang/blaze3d/platform/GlStateManager
METHOD method_21972 multMatrix (Ljava/nio/FloatBuffer;)V
ARG 0 matrix
METHOD method_21973 initFramebufferSupport (Lorg/lwjgl/opengl/GLCapabilities;)Ljava/lang/String;
COMMENT Configures the frame buffer and populates {@link FrameBufferInfo} with the appropriate constants
COMMENT Configures the frame buffer and populates {@link FramebufferInfo} with the appropriate constants
COMMENT for the current GLCapabilities.
COMMENT
COMMENT @return human-readable string representing the selected frame buffer technology.
COMMENT @throws IllegalStateException if no known frame buffer technology is supported.
COMMENT @return human-readable string representing the selected frame buffer technology
COMMENT @throws IllegalStateException if no known frame buffer technology is supported
ARG 0 capabilities
METHOD method_21974 depthMask (Z)V
ARG 0 mask

View File

@ -55,7 +55,7 @@ CLASS net/minecraft/class_465 net/minecraft/client/gui/screen/ingame/HandledScre
ARG 3 yPosition
ARG 4 amountText
METHOD method_2383 onMouseClick (Lnet/minecraft/class_1735;IILnet/minecraft/class_1713;)V
COMMENT @see net.minecraft.screen.ScreenHandler#onSlotClick(int, int)
COMMENT @see net.minecraft.screen.ScreenHandler#onSlotClick(int, int, net.minecraft.screen.slot.SlotActionType, net.minecraft.entity.player.PlayerEntity)
ARG 1 slot
ARG 2 invSlot
ARG 3 clickData

View File

@ -52,7 +52,7 @@ CLASS net/minecraft/class_636 net/minecraft/client/network/ClientPlayerInteracti
ARG 2 entity
ARG 3 hand
METHOD method_2906 clickSlot (IIILnet/minecraft/class_1713;Lnet/minecraft/class_1657;)Lnet/minecraft/class_1799;
COMMENT @see net.minecraft.screen.ScreenHandler#onSlotClick(int, int)
COMMENT @see net.minecraft.screen.ScreenHandler#onSlotClick(int, int, net.minecraft.screen.slot.SlotActionType, net.minecraft.entity.player.PlayerEntity)
ARG 1 syncId
ARG 2 slotId
ARG 3 clickData

View File

@ -255,7 +255,7 @@ CLASS net/minecraft/class_761 net/minecraft/client/render/WorldRenderer
ARG 8 z
ARG 10 velocityX
ARG 12 velocityY
ARG 14 velocityY
ARG 14 velocityZ
METHOD method_8564 playGlobalEvent (ILnet/minecraft/class_2338;I)V
ARG 1 eventId
ARG 2 pos

View File

@ -19,7 +19,8 @@ CLASS net/minecraft/class_1510 net/minecraft/entity/boss/dragon/EnderDragonEntit
FIELD field_7023 partBody Lnet/minecraft/class_1508;
FIELD field_7024 connectedCrystal Lnet/minecraft/class_1511;
FIELD field_7025 pathNodeConnections [I
COMMENT An array of 24 bitflags, where node #i leads to #j iff (pathNodeConnections[i] & (1 << j)) != 0.
COMMENT An array of 24 bitflags, where node #i leads to #j if and only if
COMMENT {@code (pathNodeConnections[i] & (1 << j)) != 0}.
FIELD field_7026 segmentCircularBuffer [[D
COMMENT (yaw, y, ?)
FIELD field_7027 slowedDownByBlock Z

View File

@ -22,7 +22,7 @@ CLASS net/minecraft/class_1263 net/minecraft/inventory/Inventory
ARG 2 stack
METHOD method_5438 getStack (I)Lnet/minecraft/class_1799;
COMMENT Fetches the stack currently stored at the given slot. If the slot is empty,
COMMENT or is outside the bounds of this inventory, returns see {@link ItemStack.EMPTY}.
COMMENT or is outside the bounds of this inventory, returns see {@link ItemStack#EMPTY}.
ARG 1 slot
METHOD method_5439 size ()I
METHOD method_5441 removeStack (I)Lnet/minecraft/class_1799;
@ -38,7 +38,7 @@ CLASS net/minecraft/class_1263 net/minecraft/inventory/Inventory
COMMENT No slots may have more than this number of items. It is effectively the
COMMENT stacking limit for this inventory's slots.
COMMENT
COMMENT @return the max {@link net.minecraft.item.ItemStack#getCount() count} of item stacks in this inventory
COMMENT @return the max {@link ItemStack#getCount() count} of item stacks in this inventory
METHOD method_5447 setStack (ILnet/minecraft/class_1799;)V
ARG 1 slot
ARG 2 stack

View File

@ -55,7 +55,7 @@ CLASS net/minecraft/class_2512 net/minecraft/nbt/NbtHelper
ARG 0 uuid
METHOD method_25930 toUuidNew (Lnet/minecraft/class_2520;)Ljava/util/UUID;
COMMENT Deserializes a tag into a {@link UUID}.
COMMENT The tag's data must have the same structure as the output of {@link #fromUuid}.
COMMENT The tag's data must have the same structure as the output of {@link #fromUuidNew}.
COMMENT
COMMENT @throws IllegalArgumentException if {@code tag} is not a valid representation of a UUID
COMMENT @since 20w10a