summaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/opencl/AutoCloseable.jtemplate
diff options
context:
space:
mode:
authorWade Walker <[email protected]>2014-03-07 16:32:48 -0600
committerWade Walker <[email protected]>2014-03-07 16:32:48 -0600
commit7ab26044167c84fc6386cc179e8a8736d8978c91 (patch)
tree324619f7b0dc4d5498769e04f13a9d62764236a4 /src/com/jogamp/opencl/AutoCloseable.jtemplate
parent8c406de8eb50cf785b407e2facb3502e364a66ce (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/AutoCloseable.jtemplate')
-rw-r--r--src/com/jogamp/opencl/AutoCloseable.jtemplate2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/jogamp/opencl/AutoCloseable.jtemplate b/src/com/jogamp/opencl/AutoCloseable.jtemplate
index d9f4f57a..a7bd1459 100644
--- a/src/com/jogamp/opencl/AutoCloseable.jtemplate
+++ b/src/com/jogamp/opencl/AutoCloseable.jtemplate
@@ -32,5 +32,5 @@ package com.jogamp.opencl;
* import of JDK7's ARM interface allowing JDK6 backwards compatibility.
*/
public interface AutoCloseable /*extends java.lang.AutoCloseable*/ {
- void close() throws Exception;
+ void close();
}