From d721194cf32df672b2403877a5f00a83aef87d3b Mon Sep 17 00:00:00 2001 From: Ioannis Tsakpinis Date: Tue, 15 Jan 2013 22:59:46 +0200 Subject: [PATCH] Corrected JavaDoc param order. --- src/java/org/lwjgl/opengl/ARBDebugOutputCallback.java | 2 +- src/java/org/lwjgl/opengl/KHRDebugCallback.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/lwjgl/opengl/ARBDebugOutputCallback.java b/src/java/org/lwjgl/opengl/ARBDebugOutputCallback.java index 3cbd3dc9..26935d89 100644 --- a/src/java/org/lwjgl/opengl/ARBDebugOutputCallback.java +++ b/src/java/org/lwjgl/opengl/ARBDebugOutputCallback.java @@ -188,9 +188,9 @@ public final class ARBDebugOutputCallback extends PointerWrapperAbstract { /** * This method will be called when an ARB_debug_output message is generated. * - * @param id the message ID * @param source the message source * @param type the message type + * @param id the message ID * @param severity the message severity * @param message the string representation of the message. */ diff --git a/src/java/org/lwjgl/opengl/KHRDebugCallback.java b/src/java/org/lwjgl/opengl/KHRDebugCallback.java index 22f55c67..fd3a03e4 100644 --- a/src/java/org/lwjgl/opengl/KHRDebugCallback.java +++ b/src/java/org/lwjgl/opengl/KHRDebugCallback.java @@ -196,9 +196,9 @@ public final class KHRDebugCallback extends PointerWrapperAbstract { /** * This method will be called when an ARB_debug_output message is generated. * - * @param id the message ID * @param source the message source * @param type the message type + * @param id the message ID * @param severity the message severity * @param message the string representation of the message. */