am 9a0382bb: Remove more warnings

* commit '9a0382bb46fffab5e0fd35f1c06b3fb5330af55b':
  Remove more warnings
This commit is contained in:
Scott Kennedy 2013-08-01 09:40:03 -07:00 committed by Android Git Automerger
commit d696b0b1ff
3 changed files with 7 additions and 0 deletions

View File

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

View File

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

View File

@ -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,