Merge "Fix handleGettingEabContactCommand return null" am: 744045df84 am: 15ca56bbfa

Original change: https://android-review.googlesource.com/c/platform/packages/services/Telephony/+/1574304

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Ie59ab1db1b3aa632eed26fdd20a22a33dbc6268e
diff --git a/src/com/android/phone/TelephonyShellCommand.java b/src/com/android/phone/TelephonyShellCommand.java
index 25f72aa..af293ce 100644
--- a/src/com/android/phone/TelephonyShellCommand.java
+++ b/src/com/android/phone/TelephonyShellCommand.java
@@ -1658,7 +1658,7 @@
         if (VDBG) {
             Log.v(LOG_TAG, "uce remove-eab-contact -s " + subId + ", result: " + result);
         }
-        return result;
+        return 0;
     }
 
     private int handleGettingEabContactCommand() {
@@ -1679,6 +1679,7 @@
         if (VDBG) {
             Log.v(LOG_TAG, "uce get-eab-contact, result: " + result);
         }
+        getOutPrintWriter().println(result);
         return 0;
     }