Merge "Update supported version for annotation processors to Java 17"

This commit is contained in:
Treehugger Robot 2023-03-28 12:21:37 +00:00 committed by Gerrit Code Review
commit 87ef07310b

View File

@ -47,7 +47,7 @@ import javax.tools.Diagnostic.Kind;
* Annotation processor for {@link SearchIndexable} that generates {@link SearchIndexableResources}
* subclasses.
*/
@SupportedSourceVersion(SourceVersion.RELEASE_11)
@SupportedSourceVersion(SourceVersion.RELEASE_17)
@SupportedAnnotationTypes({"com.android.settingslib.search.SearchIndexable"})
public class IndexableProcessor extends AbstractProcessor {