diff options
author | Wade Walker <[email protected]> | 2014-03-07 16:32:48 -0600 |
---|---|---|
committer | Wade Walker <[email protected]> | 2014-03-07 16:32:48 -0600 |
commit | 7ab26044167c84fc6386cc179e8a8736d8978c91 (patch) | |
tree | 324619f7b0dc4d5498769e04f13a9d62764236a4 /src/com/jogamp/opencl/CLEventList.java | |
parent | 8c406de8eb50cf785b407e2facb3502e364a66ce (diff) |
Remove Java lint warnings.
Remove all Java lint warnings, by fixing the code if possible, and if
not possible then by inserting @SuppressWarnings. Some of these
@SuppressWarnings can be replaced later with @SafeVarargs if we
eventually drop support for Java 6.
Diffstat (limited to 'src/com/jogamp/opencl/CLEventList.java')
-rw-r--r-- | src/com/jogamp/opencl/CLEventList.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/jogamp/opencl/CLEventList.java b/src/com/jogamp/opencl/CLEventList.java index 56181cfa..cae3a03c 100644 --- a/src/com/jogamp/opencl/CLEventList.java +++ b/src/com/jogamp/opencl/CLEventList.java @@ -151,7 +151,7 @@ public final class CLEventList implements CLResource, AutoCloseable, Iterable<CL */ @Deprecated @Override - public final void close() throws Exception { + public final void close() { release(); } |