Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Set Java SupportedSourceVersion to 11 (#3524)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwangtw authored May 14, 2020
1 parent e065171 commit e0bb08a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import javax.lang.model.element.TypeElement;
import javax.tools.Diagnostic.Kind;

import static javax.lang.model.SourceVersion.RELEASE_8;
import static javax.lang.model.SourceVersion.RELEASE_11;

/**
* Class that processes usage of {@link InterfaceAudience} and {@link InterfaceStability} at compile
Expand All @@ -39,7 +39,7 @@
@SupportedAnnotationTypes({"org.apache.heron.classification.InterfaceStability.Unstable",
"org.apache.heron.classification.InterfaceAudience.Private",
"org.apache.heron.classification.InterfaceAudience.LimitedPrivate"})
@SupportedSourceVersion(RELEASE_8)
@SupportedSourceVersion(RELEASE_11)
public class HeronAnnotationProcessor extends AbstractProcessor {
private ProcessingEnvironment env;

Expand Down

0 comments on commit e0bb08a

Please sign in to comment.