aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-01-25 16:20:30 +0100
committerSven Gothel <[email protected]>2014-01-25 16:20:30 +0100
commitf9214217defbcc2a640e80a68f1270ee1e428cf2 (patch)
treedd03f741a423df6686d8b883b01365e80b8e7fc3 /src
parent5c5f3b4785835b8abf53474b0c9dc248d1b8dab6 (diff)
Avoid sealed package violation: Move AutoCloseable to com.jogamp.opencl
Diffstat (limited to 'src')
-rw-r--r--src/com/jogamp/opencl/AutoCloseable.jtemplate (renamed from src/com/jogamp/common/AutoCloseable.jtemplate)2
-rw-r--r--src/com/jogamp/opencl/CLEventList.java1
-rw-r--r--src/com/jogamp/opencl/CLObjectResource.java2
3 files changed, 1 insertions, 4 deletions
diff --git a/src/com/jogamp/common/AutoCloseable.jtemplate b/src/com/jogamp/opencl/AutoCloseable.jtemplate
index a77e3df2..d9f4f57a 100644
--- a/src/com/jogamp/common/AutoCloseable.jtemplate
+++ b/src/com/jogamp/opencl/AutoCloseable.jtemplate
@@ -26,7 +26,7 @@
* or implied, of JogAmp Community.
*/
-package com.jogamp.common;
+package com.jogamp.opencl;
/**
* import of JDK7's ARM interface allowing JDK6 backwards compatibility.
diff --git a/src/com/jogamp/opencl/CLEventList.java b/src/com/jogamp/opencl/CLEventList.java
index debebc4e..56181cfa 100644
--- a/src/com/jogamp/opencl/CLEventList.java
+++ b/src/com/jogamp/opencl/CLEventList.java
@@ -28,7 +28,6 @@
package com.jogamp.opencl;
-import com.jogamp.common.AutoCloseable;
import com.jogamp.common.nio.CachedBufferFactory;
import com.jogamp.common.nio.PointerBuffer;
import java.util.Iterator;
diff --git a/src/com/jogamp/opencl/CLObjectResource.java b/src/com/jogamp/opencl/CLObjectResource.java
index 031199e8..d4686fde 100644
--- a/src/com/jogamp/opencl/CLObjectResource.java
+++ b/src/com/jogamp/opencl/CLObjectResource.java
@@ -31,8 +31,6 @@
*/
package com.jogamp.opencl;
-import com.jogamp.common.AutoCloseable;
-
/**
* Releasable resource with an CL object ID.
* @author Michael Bien, et al.