Skip to content

Commit

Permalink
Add missing supported options to AVK processor (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers authored Nov 3, 2021
1 parent 7693782 commit 26ae75e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ import javax.annotation.processing.Messager
import javax.annotation.processing.ProcessingEnvironment
import javax.annotation.processing.Processor
import javax.annotation.processing.RoundEnvironment
import javax.annotation.processing.SupportedOptions
import javax.lang.model.SourceVersion
import javax.lang.model.element.AnnotationMirror
import javax.lang.model.element.AnnotationValue
Expand All @@ -53,6 +54,7 @@ import javax.tools.JavaFileObject
import javax.tools.JavaFileObject.Kind.CLASS
import javax.tools.JavaFileObject.Kind.OTHER

@SupportedOptions(Options.OPT_SRC, Options.OPT_IGNORE_NESTED, Options.OPT_TARGETS)
@AutoService(Processor::class)
public class AutoValueKotlinProcessor : AbstractProcessor() {

Expand Down

0 comments on commit 26ae75e

Please sign in to comment.