summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiao Ma <xiaom@google.com>2023-09-07 08:18:23 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2023-09-07 08:18:23 +0000
commitd702b21514096494b8e136249f49b7fc75896ba6 (patch)
tree8129204e0d240231f990ff7b23c1d20c69261422
parentacc5324f22d1b6e222d22bce1a5565a5017a7c0b (diff)
parentf3fa68212f0b2f7fc959f51cc68a57a4cacffb94 (diff)
downloadnet-d702b21514096494b8e136249f49b7fc75896ba6.tar.gz
Merge "Remove the VisibleForTesting annotation on IaPrefixOption constructor." into main
-rw-r--r--common/device/com/android/net/module/util/structs/IaPrefixOption.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/common/device/com/android/net/module/util/structs/IaPrefixOption.java b/common/device/com/android/net/module/util/structs/IaPrefixOption.java
index f0e44098..59d655ca 100644
--- a/common/device/com/android/net/module/util/structs/IaPrefixOption.java
+++ b/common/device/com/android/net/module/util/structs/IaPrefixOption.java
@@ -18,8 +18,6 @@ package com.android.net.module.util.structs;
import static com.android.net.module.util.NetworkStackConstants.DHCP6_OPTION_IAPREFIX;
-import androidx.annotation.VisibleForTesting;
-
import com.android.net.module.util.Struct;
import com.android.net.module.util.Struct.Field;
import com.android.net.module.util.Struct.Type;
@@ -69,7 +67,6 @@ public class IaPrefixOption extends Struct {
@Field(order = 5, type = Type.ByteArray, arraysize = 16)
public final byte[] prefix;
- @VisibleForTesting
public IaPrefixOption(final short code, final short length, final long preferred,
final long valid, final byte prefixLen, final byte[] prefix) {
this.code = code;