aboutsummaryrefslogtreecommitdiff
path: root/ril/com/android/internal/telephony/Asus8916RIL.java
diff options
context:
space:
mode:
Diffstat (limited to 'ril/com/android/internal/telephony/Asus8916RIL.java')
-rw-r--r--ril/com/android/internal/telephony/Asus8916RIL.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/ril/com/android/internal/telephony/Asus8916RIL.java b/ril/com/android/internal/telephony/Asus8916RIL.java
deleted file mode 100644
index 7b628f0..0000000
--- a/ril/com/android/internal/telephony/Asus8916RIL.java
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright (C) 2016 The CyanogenMod Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.android.internal.telephony;
-
-import static com.android.internal.telephony.RILConstants.*;
-
-import android.content.Context;
-import android.os.AsyncResult;
-import android.os.Message;
-
-public class Asus8916RIL extends RIL implements CommandsInterface {
- public Asus8916RIL(Context context, int preferredNetworkType, int cdmaSubscription) {
- super(context, preferredNetworkType, cdmaSubscription, null);
- }
-
- public Asus8916RIL(Context context, int preferredNetworkType,
- int cdmaSubscription, Integer instanceId) {
- super(context, preferredNetworkType, cdmaSubscription, instanceId);
- }
-
- @Override
- public void getRadioCapability(Message response) {
- riljLog("getRadioCapability: returning static radio capability");
- if (response != null) {
- Object ret = makeStaticRadioCapability();
- AsyncResult.forMessage(response, ret, null);
- response.sendToTarget();
- }
- }
-}