diff options
author | Elliott Hughes <enh@google.com> | 2021-01-26 16:48:35 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2021-01-26 16:48:35 -0800 |
commit | f4b2772988a7ac90527e86768d29c620dc672346 (patch) | |
tree | 3a75f6e1c5ab3d87a086abc6b5da08c7eed79abe /media | |
parent | 4ddafbf58f1d37c140ea8c8fa64b9bb2a41016c5 (diff) |
Remove __ANDROID_API__ #if checks.
__INTRODUCED_IN() does the right thing automatically now.
Bug: http://b/178449269
Test: treehugger
Change-Id: Ic39b34fcffa2c9cb02ffeb41ec4c3b3a072c62d8
Diffstat (limited to 'media')
-rw-r--r-- | media/native/midi/include/amidi/AMidi.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/media/native/midi/include/amidi/AMidi.h b/media/native/midi/include/amidi/AMidi.h index 0f930b5443e4..742db34b74a7 100644 --- a/media/native/midi/include/amidi/AMidi.h +++ b/media/native/midi/include/amidi/AMidi.h @@ -61,8 +61,6 @@ enum { AMIDI_DEVICE_TYPE_BLUETOOTH = 3 /* A MIDI device connected via BlueTooth */ }; -#if __ANDROID_API__ >= 29 - /* * Device API */ @@ -249,8 +247,6 @@ media_status_t AMIDI_API AMidiInputPort_sendFlush(const AMidiInputPort *inputPor */ void AMIDI_API AMidiInputPort_close(const AMidiInputPort *inputPort) __INTRODUCED_IN(29); -#endif /* __ANDROID_API__ >= 29 */ - #ifdef __cplusplus } #endif |