From afa56d7f528afd1dba6ee01afe3a4e838c09ad3f Mon Sep 17 00:00:00 2001 From: Walker Selby Date: Sun, 3 Dec 2023 18:34:51 -0800 Subject: Replace invalid params with correct param (#668) Replace invalid kotlin documentation parameters with correct param. #668 --- .../java/at/hannibal2/skyhanni/utils/EntityOutlineRenderer.kt | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/main/java') diff --git a/src/main/java/at/hannibal2/skyhanni/utils/EntityOutlineRenderer.kt b/src/main/java/at/hannibal2/skyhanni/utils/EntityOutlineRenderer.kt index 28fc08807..ca4827291 100644 --- a/src/main/java/at/hannibal2/skyhanni/utils/EntityOutlineRenderer.kt +++ b/src/main/java/at/hannibal2/skyhanni/utils/EntityOutlineRenderer.kt @@ -77,9 +77,7 @@ object EntityOutlineRenderer { * * @param camera the current camera * @param partialTicks the progress to the next tick - * @param x the camera x position - * @param y the camera y position - * @param z the camera z position + * @param vector the camera position as Vector */ @JvmStatic fun renderEntityOutlines(camera: ICamera, partialTicks: Float, vector: LorenzVec): Boolean { @@ -284,9 +282,7 @@ object EntityOutlineRenderer { * * @param camera the current camera * @param entity the entity to render - * @param x the camera x position - * @param y the camera y position - * @param z the camera z position + * @param vector the camera position as Vector * @return whether the entity should be rendered */ private fun shouldRender(camera: ICamera, entity: Entity, vector: LorenzVec): Boolean = -- cgit