diff options
author | Jiyong Park <jiyong@google.com> | 2021-03-29 20:11:58 +0900 |
---|---|---|
committer | Jiyong Park <jiyong@google.com> | 2021-04-03 08:25:12 +0900 |
commit | f1691d2a2c23631c25291bc653d25a8f906b9c5d (patch) | |
tree | c5b311093dbf48ad5fe0950928c05a7bef2a677e /android/api_levels.go | |
parent | 100d5d67328e91d88f11ba8ec7a5a3997d9c5bdc (diff) |
Move java.sdkSpec to the android package
... in preparation for making the handling of sdk versions consistent
across java and cc modules.
Bug: 175678607
Test: m
Change-Id: I598f0454bce9b7320621022115412fbe97403945
Diffstat (limited to 'android/api_levels.go')
-rw-r--r-- | android/api_levels.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/android/api_levels.go b/android/api_levels.go index 2f6a9d29d..9bc7e837b 100644 --- a/android/api_levels.go +++ b/android/api_levels.go @@ -31,9 +31,9 @@ const previewAPILevelBase = 9000 // ApiLevelFromUser or ApiLevelOrPanic. // // The different *types* of API levels are handled separately. Currently only -// Java has these, and they're managed with the sdkKind enum of the sdkSpec. A -// future cleanup should be to migrate sdkSpec to using ApiLevel instead of its -// sdkVersion int, and to move sdkSpec into this package. +// Java has these, and they're managed with the SdkKind enum of the SdkSpec. A +// future cleanup should be to migrate SdkSpec to using ApiLevel instead of its +// SdkVersion int, and to move SdkSpec into this package. type ApiLevel struct { // The string representation of the API level. value string |