We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79b6e0b commit 5caa7c1Copy full SHA for 5caa7c1
src/main/java/io/github/bldl/annotationProcessing/VarianceProcessor.java
@@ -35,9 +35,9 @@
35
@AutoService(Processor.class)
36
@SupportedSourceVersion(SourceVersion.RELEASE_17)
37
@SupportedAnnotationTypes({
38
- "anthonisen.felix.annotationProcessing.MyVariance",
39
- "anthonisen.felix.annotationProcessing.Covariant",
40
- "anthonisen.felix.annotationProcessing.Contravariant",
+ "io.github.bldl.annotationProcessing.annotations.MyVariance",
+ "io.github.bldl.annotationProcessing.annotations.Covariant",
+ "io.github.bldl.annotationProcessing.annotations.Contravariant",
41
})
42
public class VarianceProcessor extends AbstractProcessor {
43
private Messager messager;
0 commit comments