Fix ambiguously named getters.

Change-Id: Ieec918a520fd291d8d85695d1a86b85a73b266a5
This commit is contained in:
Ben Komalo 2011-06-14 17:38:19 -07:00
parent 22409fcffa
commit 913e26180d
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}