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

This commit is contained in:
Mikhail Naganov
2023-03-30 19:14:48 +00:00
committed by Gerrit Code Review

View File

@@ -896,7 +896,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 {