Merge "AudioService: Align 'makeAlsaAddressString' with the rest" am: ebd07bca42

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

Change-Id: I6402c3d782bd0a9f000487a8780033f12ed56ebd
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Mikhail Naganov
2023-03-30 20:05:28 +00:00
committed by Automerger Merge Worker

View File

@@ -896,7 +896,7 @@ public class AudioService extends IAudioService.Stub
// Defines the format for the connection "address" for ALSA devices // Defines the format for the connection "address" for ALSA devices
public static String makeAlsaAddressString(int card, int device) { public static String makeAlsaAddressString(int card, int device) {
return "card=" + card + ";device=" + device + ";"; return "card=" + card + ";device=" + device;
} }
public static final class Lifecycle extends SystemService { public static final class Lifecycle extends SystemService {