Skip to content

Commit

Permalink
SLING-12271 Remove Java <= 8 bytecode restriction
Browse files Browse the repository at this point in the history
  • Loading branch information
kwin committed Mar 22, 2024
1 parent f10c02a commit 6d6b560
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
import javax.annotation.processing.AbstractProcessor;
import javax.annotation.processing.RoundEnvironment;
import javax.annotation.processing.SupportedAnnotationTypes;
import javax.annotation.processing.SupportedSourceVersion;
import javax.lang.model.SourceVersion;
import javax.lang.model.element.Element;
import javax.lang.model.element.ElementKind;
import javax.lang.model.element.Modifier;
Expand All @@ -40,7 +38,6 @@
"javax.inject.Inject",
"org.apache.sling.models.annotations.injectorspecific.*",
})
@SupportedSourceVersion(SourceVersion.RELEASE_8)
public class ValidatingAnnotationProcessor extends AbstractProcessor {

@Override
Expand Down

0 comments on commit 6d6b560

Please sign in to comment.