From 5631c5a3ba17e5c3b72a2e16a60d5ebfae198657 Mon Sep 17 00:00:00 2001 From: Ollie Date: Thu, 11 Apr 2013 23:02:11 +0200 Subject: [PATCH] Fixed JavaDoc for Mouse#next() Mouse does not contain a getEventDZ() method, so the JavaDoc was invalid. Signed-off-by: Ollie --- src/java/org/lwjgl/input/Mouse.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/lwjgl/input/Mouse.java b/src/java/org/lwjgl/input/Mouse.java index 1504cf8b..9c32bc6f 100644 --- a/src/java/org/lwjgl/input/Mouse.java +++ b/src/java/org/lwjgl/input/Mouse.java @@ -433,8 +433,8 @@ public class Mouse { /** * Gets the next mouse event. You can query which button caused the event by using * getEventButton() (if any). To get the state of that key, for that event, use - * getEventButtonState. To get the current mouse delta values use getEventDX(), - * getEventDY() and getEventDZ(). + * getEventButtonState. To get the current mouse delta values use getEventDX() + * and getEventDY(). * @see org.lwjgl.input.Mouse#getEventButton() * @see org.lwjgl.input.Mouse#getEventButtonState() * @return true if a mouse event was read, false otherwise