Update supported version for annotation processors to Java 17

Bug: 271562987
Test: m
Change-Id: I5250f4ef5b336429b65cea4c49d1c29685f6c991
This commit is contained in:
Sorin Basca
2023-03-15 16:21:44 +00:00
parent beefb571f6
commit c9ee622346

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 {