diff options
| author | Glenn Kasten <gkasten@google.com> | 2017-02-22 15:29:50 -0800 |
|---|---|---|
| committer | Glenn Kasten <gkasten@google.com> | 2017-03-06 17:42:21 -0800 |
| commit | 3fcf85cd91f01f21b3f9727508fd190898695533 (patch) | |
| tree | f01e168dfd2912ad3fee40ff0b148986e85c0c07 /core/java | |
| parent | 072d7ac548f783a706e7fcc6644f8b09a5575a40 (diff) | |
Comment out unused methods
Test: compiles OK
Change-Id: I6f5513e7c5655e91e4cc3dd8de8ec407b9f7b94e
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/com/android/internal/alsa/AlsaDevicesParser.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/java/com/android/internal/alsa/AlsaDevicesParser.java b/core/java/com/android/internal/alsa/AlsaDevicesParser.java index 81b79438de20..3d78a2c27bf4 100644 --- a/core/java/com/android/internal/alsa/AlsaDevicesParser.java +++ b/core/java/com/android/internal/alsa/AlsaDevicesParser.java @@ -199,9 +199,11 @@ public class AlsaDevicesParser { // // Predicates // +/* public boolean hasPlaybackDevices() { return mHasPlaybackDevices; } +*/ public boolean hasPlaybackDevices(int card) { for (AlsaDeviceRecord deviceRecord : mDeviceRecords) { @@ -214,9 +216,11 @@ public class AlsaDevicesParser { return false; } +/* public boolean hasCaptureDevices() { return mHasCaptureDevices; } +*/ public boolean hasCaptureDevices(int card) { for (AlsaDeviceRecord deviceRecord : mDeviceRecords) { @@ -229,9 +233,11 @@ public class AlsaDevicesParser { return false; } +/* public boolean hasMIDIDevices() { return mHasMIDIDevices; } +*/ public boolean hasMIDIDevices(int card) { for (AlsaDeviceRecord deviceRecord : mDeviceRecords) { |
