am 9a0382bb
: Remove more warnings
* commit '9a0382bb46fffab5e0fd35f1c06b3fb5330af55b': Remove more warnings
This commit is contained in:
commit
d696b0b1ff
@ -444,10 +444,12 @@ public final class Policy extends EmailContent implements EmailContent.PolicyCol
|
||||
* Supports Parcelable
|
||||
*/
|
||||
public static final Parcelable.Creator<Policy> CREATOR = new Parcelable.Creator<Policy>() {
|
||||
@Override
|
||||
public Policy createFromParcel(Parcel in) {
|
||||
return new Policy(in);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Policy[] newArray(int size) {
|
||||
return new Policy[size];
|
||||
}
|
||||
|
@ -192,6 +192,7 @@ public final class QuickResponse extends EmailContent
|
||||
/**
|
||||
* Implements Parcelable.
|
||||
*/
|
||||
@Override
|
||||
public void writeToParcel(Parcel dest, int flags) {
|
||||
// mBaseUri is not parceled
|
||||
dest.writeLong(mId);
|
||||
|
@ -269,6 +269,7 @@ public class SSLSocketFactory implements LayeredSocketFactory {
|
||||
|
||||
|
||||
// non-javadoc, see interface org.apache.http.conn.SocketFactory
|
||||
@Override
|
||||
public Socket createSocket()
|
||||
throws IOException {
|
||||
|
||||
@ -278,6 +279,7 @@ public class SSLSocketFactory implements LayeredSocketFactory {
|
||||
|
||||
|
||||
// non-javadoc, see interface org.apache.http.conn.SocketFactory
|
||||
@Override
|
||||
public Socket connectSocket(
|
||||
final Socket sock,
|
||||
final String host,
|
||||
@ -348,6 +350,7 @@ public class SSLSocketFactory implements LayeredSocketFactory {
|
||||
*
|
||||
* @throws IllegalArgumentException if the argument is invalid
|
||||
*/
|
||||
@Override
|
||||
public boolean isSecure(Socket sock)
|
||||
throws IllegalArgumentException {
|
||||
|
||||
@ -370,6 +373,7 @@ public class SSLSocketFactory implements LayeredSocketFactory {
|
||||
|
||||
|
||||
// non-javadoc, see interface LayeredSocketFactory
|
||||
@Override
|
||||
public Socket createSocket(
|
||||
final Socket socket,
|
||||
final String host,
|
||||
|
Loading…
Reference in New Issue
Block a user