Merge "Rename getVpnRequiresValidation to isVpnValidationRequired"

This commit is contained in:
Chiachang Wang
2022-03-03 00:10:54 +00:00
committed by Gerrit Code Review
3 changed files with 4 additions and 4 deletions

View File

@@ -250,7 +250,7 @@ public final class NetworkAgentConfig implements Parcelable {
/**
* Whether network validation should be performed for this VPN network.
* {@see #getVpnRequiresValidation}
* {@see #isVpnValidationRequired}
* @hide
*/
private boolean mVpnRequiresValidation = false;
@@ -265,7 +265,7 @@ public final class NetworkAgentConfig implements Parcelable {
* @hide
*/
@SystemApi(client = MODULE_LIBRARIES)
public boolean getVpnRequiresValidation() {
public boolean isVpnValidationRequired() {
return mVpnRequiresValidation;
}