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

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

Change-Id: Ia882b388132e021816e747653f98124e6e21c74b
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:41:15 +00:00
committed by Automerger Merge Worker

View File

@@ -901,7 +901,7 @@ public class AudioService extends IAudioService.Stub
// Defines the format for the connection "address" for ALSA devices
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 {