AutoService 1.1.0
eamonnmcmanus
released this
23 May 17:22
·
304 commits
to main
since this release
- AutoService now verifies by default that the annotated class does indeed implement the interface in
@AutoServce
. Previously this only happened when compiling with-Averify=true
. The verification can be disabled either by compiling with-Averify=false
or by adding@SuppressWarnings("AutoService")
to the annotated class. (965e893) - The
@AutoService
annotation can no longer be applied to an interface or abstract class. This new verification can also be disabled in the same way. (591731c)