Merge "Remove VpnType usage in VpnTransportInfo" am: e7ea40527a am: b13973838a

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1629273

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I5f83eb73ce787fd8d8c577deeaced9e6a8d1a117
This commit is contained in:
Remi NGUYEN VAN
2021-03-15 02:49:11 +00:00
committed by Automerger Merge Worker

View File

@@ -42,9 +42,9 @@ public final class VpnTransportInfo implements TransportInfo, Parcelable {
MessageUtils.findMessageNames(new Class[]{VpnManager.class}, new String[]{"TYPE_VPN_"});
/** Type of this VPN. */
@VpnManager.VpnType public final int type;
public final int type;
public VpnTransportInfo(@VpnManager.VpnType int type) {
public VpnTransportInfo(int type) {
this.type = type;
}