summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWade Walker <[email protected]>2018-12-25 09:55:29 -0600
committerSven Gothel <[email protected]>2019-08-16 23:58:30 +0200
commit610493b1724b5d91327f478338ff5d029bdcc032 (patch)
tree2278d59c1a410ac3e6c43c499e5b4194a8dfd370
parentd7db7d7749a139c0238e0ae484ece39bc6b51d66 (diff)
Fix warning in annotation processor
-rw-r--r--src/java/com/jogamp/gluegen/structgen/CStructAnnotationProcessor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/jogamp/gluegen/structgen/CStructAnnotationProcessor.java b/src/java/com/jogamp/gluegen/structgen/CStructAnnotationProcessor.java
index 7ccfd1b..497e9ff 100644
--- a/src/java/com/jogamp/gluegen/structgen/CStructAnnotationProcessor.java
+++ b/src/java/com/jogamp/gluegen/structgen/CStructAnnotationProcessor.java
@@ -85,7 +85,7 @@ import jogamp.common.Debug;
* @author Michael Bien, et al.
*/
@SupportedAnnotationTypes(value = {"com.jogamp.gluegen.structgen.CStruct", "com.jogamp.gluegen.structgen.CStructs"})
-@SupportedSourceVersion(SourceVersion.RELEASE_6)
+@SupportedSourceVersion(SourceVersion.RELEASE_11)
public class CStructAnnotationProcessor extends AbstractProcessor {
private static final String DEFAULT = "_default_";
static final boolean DEBUG;