are there any example about how to add compiler wa...
# kapt
t
are there any example about how to add compiler warnings using kapt?
b
I normally just use
processingEnv.messager.printMessage(WARNING, "MyWarningText")
.
processingEnv
is a protected field in
AbstractProcessor
t
i'll try that. thank you!