From 15991cc94821a9ec096a2e1d7fd2e28d810a67b1 Mon Sep 17 00:00:00 2001 From: songferngwang Date: Thu, 23 May 2024 12:40:22 +0000 Subject: [PATCH] Remove the java doc Bug: 331222033 Test: build pass Change-Id: I0953dbaf68eb78ff665cf4b46c65bcc4967a60a8 --- .../settings/network/UiccSlotUtil.java | 32 ------------------- 1 file changed, 32 deletions(-) diff --git a/src/com/android/settings/network/UiccSlotUtil.java b/src/com/android/settings/network/UiccSlotUtil.java index df23f122e83..f15808f4ef6 100644 --- a/src/com/android/settings/network/UiccSlotUtil.java +++ b/src/com/android/settings/network/UiccSlotUtil.java @@ -329,38 +329,6 @@ public class UiccSlotUtil { return INVALID_PHYSICAL_SLOT_ID; } - // Device | |Slot | - // Working| |Mapping| - // State |Type |Mode |Friendly name - //-------------------------------------------------------------------------- - // Single |SIM pSIM [RIL 0] |1 |pSIM active - // Single |SIM MEP Port #0 [RIL0] |2 |eSIM Port0 active - // Single |SIM MEP Port #1 [RIL0] |2.1 |eSIM Port1 active - // DSDS |pSIM [RIL 0] + MEP Port #0 [RIL 1] |3 |pSIM+Port0 - // DSDS |pSIM [RIL 0] + MEP Port #1 [RIL 1] |3.1 |pSIM+Port1 - // DSDS |MEP Port #0 [RIL 0] + MEP Port #1 [RIL1]|3.2 |Dual-Ports-A - // DSDS |MEP Port #1 [RIL 0] + MEP Port #0 [RIL1]|4 |Dual-Ports-B - // - // The rules are: - // 1. pSIM's logical slots always is [RIL 0]. - // 2. assign the new active port to the same stack that will be de-activated - // For example: mode#3->mode#4 - // 3. Add an eSIM carrier or enable eSIM carrier. The cases are at the below. - // 1) 1 => 2 / 2.1 / 3 / 3.1 - // 2) 2 => 1 / 3 / 3.2 - // 3) 2.1 => 3.1 / 4 - // 4) 3 => 4 - // 5) 3.1 => 3.2 - // Note: - // 1) 2 <=> 2.1 blocked by LPA (reason: existing active port in SS so just re-use) - // 2) 3 <=> 3.1 blocked by LPA (reason: if pSIM+an active port, re-use the active port) - // 4. pSIM insertion or enabling - // 1) 2 => 1 / 3 - // 2) 2.1 => 1 / 3.1 - // 3) 3.2 => 3 / 3.1 - // 4) 4 => 3 / 3.1 - - @VisibleForTesting static Collection prepareUiccSlotMappings( Collection uiccSlotMappings, boolean isPsim, int physicalSlotId,