Skip to content

Commit

Permalink
Fix CStruct annotation processor warning.
Browse files Browse the repository at this point in the history
Updated the Java source version the annotation processor supports
to stop it from throwing a warning during the build process.
  • Loading branch information
WadeWalker committed Mar 6, 2014
1 parent 15ea21e commit fccb246
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
* @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;
Expand Down

0 comments on commit fccb246

Please sign in to comment.