Skip to content

Commit

Permalink
#302 annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jul 11, 2022
1 parent 5a513ad commit 915cc44
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
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.ExecutableElement;
Expand All @@ -51,6 +53,7 @@
* @since 0.17
*/
@SupportedAnnotationTypes("com.jcabi.aspects.Async")
@SupportedSourceVersion(SourceVersion.RELEASE_8)
public final class AsyncReturnTypeProcessor extends AbstractProcessor {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
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.ExecutableElement;
Expand All @@ -47,6 +49,7 @@
* @since 0.16
*/
@SupportedAnnotationTypes("com.jcabi.aspects.Quietly")
@SupportedSourceVersion(SourceVersion.RELEASE_8)
public final class QuietlyReturnTypeProcessor extends AbstractProcessor {

@Override
Expand Down

0 comments on commit 915cc44

Please sign in to comment.