aboutsummaryrefslogtreecommitdiffstats
path: root/src/java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java')
-rwxr-xr-xsrc/java/com/sun/gluegen/runtime/BufferFactory.java.javame_cdc_fp4
-rwxr-xr-xsrc/java/com/sun/gluegen/runtime/BufferFactory.java.javase4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/java/com/sun/gluegen/runtime/BufferFactory.java.javame_cdc_fp b/src/java/com/sun/gluegen/runtime/BufferFactory.java.javame_cdc_fp
index 5f32b0e..dacdd03 100755
--- a/src/java/com/sun/gluegen/runtime/BufferFactory.java.javame_cdc_fp
+++ b/src/java/com/sun/gluegen/runtime/BufferFactory.java.javame_cdc_fp
@@ -78,11 +78,11 @@ public class BufferFactory {
}
/** Helper routine to tell whether a buffer is direct or not. Null
- pointers are considered direct. isDirect() should really be
+ pointers are considered NOT direct. isDirect() should really be
public in Buffer and not replicated in all subclasses. */
public static boolean isDirect(Object buf) {
if (buf == null) {
- return true;
+ return false;
}
if (buf instanceof ByteBuffer) {
return ((ByteBuffer) buf).isDirect();
diff --git a/src/java/com/sun/gluegen/runtime/BufferFactory.java.javase b/src/java/com/sun/gluegen/runtime/BufferFactory.java.javase
index 472733f..1e660c1 100755
--- a/src/java/com/sun/gluegen/runtime/BufferFactory.java.javase
+++ b/src/java/com/sun/gluegen/runtime/BufferFactory.java.javase
@@ -77,11 +77,11 @@ public class BufferFactory {
}
/** Helper routine to tell whether a buffer is direct or not. Null
- pointers are considered direct. isDirect() should really be
+ pointers are considered NOT direct. isDirect() should really be
public in Buffer and not replicated in all subclasses. */
public static boolean isDirect(Object buf) {
if (buf == null) {
- return true;
+ return false;
}
if (buf instanceof ByteBuffer) {
return ((ByteBuffer) buf).isDirect();