summaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/common
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-03-22 13:57:18 +0100
committerSven Gothel <[email protected]>2012-03-22 13:57:18 +0100
commitcda1f9f66528cd7e16dc807840d927fd452e1dd6 (patch)
treee4f9ee25efa4a962ef644db9c32a3a0894c8974a /src/java/com/jogamp/common
parent6e732314105b12ef92a09c1db3823a55e9a39f4f (diff)
Minor edits: Fix API doc / Remove Thread.dumpStack()
Diffstat (limited to 'src/java/com/jogamp/common')
-rwxr-xr-xsrc/java/com/jogamp/common/nio/Buffers.java3
-rwxr-xr-xsrc/java/com/jogamp/common/os/DynamicLibraryBundle.java1
2 files changed, 1 insertions, 3 deletions
diff --git a/src/java/com/jogamp/common/nio/Buffers.java b/src/java/com/jogamp/common/nio/Buffers.java
index 27000fe..5aace6e 100755
--- a/src/java/com/jogamp/common/nio/Buffers.java
+++ b/src/java/com/jogamp/common/nio/Buffers.java
@@ -289,8 +289,7 @@ public class Buffers {
/**
* Helper routine to tell whether a buffer is direct or not. Null
- * pointers are considered NOT direct. isDirect() should really be
- * public in Buffer and not replicated in all subclasses.
+ * pointers <b>are</b> considered direct.
*/
public static boolean isDirect(Object buf) {
if (buf == null) {
diff --git a/src/java/com/jogamp/common/os/DynamicLibraryBundle.java b/src/java/com/jogamp/common/os/DynamicLibraryBundle.java
index 8a71123..e90209a 100755
--- a/src/java/com/jogamp/common/os/DynamicLibraryBundle.java
+++ b/src/java/com/jogamp/common/os/DynamicLibraryBundle.java
@@ -77,7 +77,6 @@ public class DynamicLibraryBundle implements DynamicLookupHelper {
this.info = info;
if(DEBUG) {
System.err.println(Thread.currentThread().getName()+" - DynamicLibraryBundle.init start with: "+info.getClass().getName());
- Thread.dumpStack();
}
nativeLibraries = new ArrayList<NativeLibrary>();
toolLibNames = info.getToolLibNames();