Fix ambiguously named getters.
Change-Id: Ieec918a520fd291d8d85695d1a86b85a73b266a5
This commit is contained in:
parent
22409fcffa
commit
913e26180d
@ -295,12 +295,12 @@ public final class HostAuth extends EmailContent implements HostAuthColumns, Par
|
||||
}
|
||||
|
||||
/** Convenience method to determine if SSL is used. */
|
||||
public boolean useSsl() {
|
||||
public boolean shouldUseSsl() {
|
||||
return (mFlags & FLAG_SSL) != 0;
|
||||
}
|
||||
|
||||
/** Convenience method to determine if all server certs should be used. */
|
||||
public boolean trustAllServerCerts() {
|
||||
public boolean shouldTrustAllServerCerts() {
|
||||
return (mFlags & FLAG_TRUST_ALL) != 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user