Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3ce3d9f3 authored by Remi NGUYEN VAN's avatar Remi NGUYEN VAN Committed by Gerrit Code Review
Browse files

Merge "Remove VpnType usage in VpnTransportInfo"

parents c538773b 7bb23a94
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
    }