diff options
author | Wade Walker <[email protected]> | 2014-03-06 14:27:25 -0600 |
---|---|---|
committer | Wade Walker <[email protected]> | 2014-03-06 14:27:25 -0600 |
commit | fccb2460832aedd1b51372aa1e7881770cb638c9 (patch) | |
tree | 405ff73afa5d225af4ebd636533adfdc7d3a2bb2 | |
parent | 15ea21ea190a79a3740b66698103ef5b4f145e94 (diff) |
Fix CStruct annotation processor warning.
Updated the Java source version the annotation processor supports
to stop it from throwing a warning during the build process.
-rw-r--r-- | src/java/com/jogamp/gluegen/structgen/CStructAnnotationProcessor.java | 2 |
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 1eda788..53391e8 100644 --- a/src/java/com/jogamp/gluegen/structgen/CStructAnnotationProcessor.java +++ b/src/java/com/jogamp/gluegen/structgen/CStructAnnotationProcessor.java @@ -78,7 +78,7 @@ import jogamp.common.Debug; * @author Sven Gothel, et.al. */ @SupportedAnnotationTypes(value = {"com.jogamp.gluegen.structgen.CStruct"}) -@SupportedSourceVersion(SourceVersion.RELEASE_6) +@SupportedSourceVersion(SourceVersion.RELEASE_7) public class CStructAnnotationProcessor extends AbstractProcessor { private static final String DEFAULT = "_default_"; private static final boolean DEBUG; |