From 0f1ddb586b6a1ee46596ed75be901c986d5cc2c7 Mon Sep 17 00:00:00 2001 From: Pavel Zhamaitsiak Date: Wed, 2 Sep 2015 11:01:34 -0700 Subject: IMS: Fix registrationFeatureCapabilityChanged declaration in AIDL Two arrays are passed from caller (in this case IMS service implementation) to listener (in this case client of ImsManager). Listener is not modifying arrays and caller is not expecting data to be returned back. Bug: 23749309 Change-Id: I6231cfd16852acfca88ee43e8538b2440058d774 --- telephony/java/com/android/ims/internal/IImsRegistrationListener.aidl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'telephony') diff --git a/telephony/java/com/android/ims/internal/IImsRegistrationListener.aidl b/telephony/java/com/android/ims/internal/IImsRegistrationListener.aidl index a6a2658..23a69d1 100644 --- a/telephony/java/com/android/ims/internal/IImsRegistrationListener.aidl +++ b/telephony/java/com/android/ims/internal/IImsRegistrationListener.aidl @@ -71,7 +71,7 @@ interface IImsRegistrationListener { * @param disabledFeatures features disabled as defined in com.android.ims.ImsConfig#FeatureConstants. */ void registrationFeatureCapabilityChanged(int serviceClass, - out int[] enabledFeatures, out int[] disabledFeatures); + in int[] enabledFeatures, in int[] disabledFeatures); /** * Updates the application with the waiting voice message count. -- cgit v1.1