Add @UpdateForV9 markers on versions (#102441)

We probably wouldn't forget these, but for the sake of completeness this
commit marks several lists of versions with the `@UpdateForV9`
annotation.
This commit is contained in:
David Turner 2023-11-22 08:09:34 +00:00 committed by GitHub
parent 10afe05a82
commit 5e20253fe8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 0 deletions

View file

@ -18,6 +18,8 @@ import java.util.function.Predicate;
public enum RestApiVersion {
V_8(8),
@UpdateForV9 // v9 will not need to support the v7 REST API
V_7(7);
public final byte major;