Merge "Update supported version for IndexableProcessor to Java 11" am: acc5373da5 am: dd84d6c4e0

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2110705

Change-Id: Ifc04d24ff6f77382c4c4a94fa420f36c1d2ba063
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Sorin Basca
2022-06-06 13:21:37 +00:00
committed by Automerger Merge Worker

View File

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