From 44729c613fe65fd9b2f14b1844c1f02ba94ad498 Mon Sep 17 00:00:00 2001 From: Sanket Padawe Date: Fri, 11 Mar 2016 09:50:56 -0800 Subject: [PATCH] Fix build failure. + Fix build failure caused by https://partner-android-review.googlesource.com/#/c/538910/ Change-Id: I83b579f3db4c5a167b206318edcc627c6d2f4b0a --- .../java/com/android/internal/telephony/RILConstants.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/telephony/java/com/android/internal/telephony/RILConstants.java b/telephony/java/com/android/internal/telephony/RILConstants.java index fbc950fcedb05..7f90731d2f728 100644 --- a/telephony/java/com/android/internal/telephony/RILConstants.java +++ b/telephony/java/com/android/internal/telephony/RILConstants.java @@ -95,8 +95,8 @@ public interface RILConstants { int SIM_BUSY = 51; /* SIM is busy */ int SIM_FULL = 52; /* The target EF is full */ int NETWORK_REJECT = 53; /* Request is rejected by network */ - int OPERATION_NOT_ALLOWED = 54, /* Not allowed the request now */ - int EMPTY_RECORD = 55, /* The request record is empty */ + int OPERATION_NOT_ALLOWED = 54; /* Not allowed the request now */ + int EMPTY_RECORD = 55; /* The request record is empty */ // Below is list of OEM specific error codes which can by used by OEMs in case they don't want to // reveal particular replacement for Generic failure int OEM_ERROR_1 = 501;