Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 762b33f9 authored by Jesse Wilson's avatar Jesse Wilson Committed by Android Git Automerger
Browse files

am 2d2f10fa: am 28c74257: Add @Deprecated to match @deprecated where it\'s missing.

* commit '2d2f10fa':
  Add @Deprecated to match @deprecated where it's missing.
parents 385125c6 2d2f10fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -234335,7 +234335,7 @@
 synchronized="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 deprecated="deprecated"
 visibility="public"
>
</method>
+1 −0
Original line number Diff line number Diff line
@@ -99,6 +99,7 @@ public class SSLCertificateSocketFactory extends SSLSocketFactory {
    private final boolean mSecure;

    /** @deprecated Use {@link #getDefault(int)} instead. */
    @Deprecated
    public SSLCertificateSocketFactory(int handshakeTimeoutMillis) {
        this(handshakeTimeoutMillis, null, true);
    }
+3 −0
Original line number Diff line number Diff line
@@ -112,6 +112,7 @@ public class SslCertificate {
     * @param validNotAfter The not-after date from the certificate validity period in ISO 8601 format
     * @deprecated Use {@link #SslCertificate(String, String, Date, Date)}
     */
    @Deprecated
    public SslCertificate(
            String issuedTo, String issuedBy, String validNotBefore, String validNotAfter) {
        this(issuedTo, issuedBy, parseDate(validNotBefore), parseDate(validNotAfter));
@@ -157,6 +158,7 @@ public class SslCertificate {
     *
     * @deprecated Use {@link #getValidNotBeforeDate()}
     */
    @Deprecated
    public String getValidNotBefore() {
        return formatDate(mValidNotBefore);
    }
@@ -175,6 +177,7 @@ public class SslCertificate {
     *
     * @deprecated Use {@link #getValidNotAfterDate()}
     */
    @Deprecated
    public String getValidNotAfter() {
        return formatDate(mValidNotAfter);
    }
+1 −0
Original line number Diff line number Diff line
@@ -29,6 +29,7 @@ import java.util.regex.Pattern;
 * @deprecated This class is no longer functional.
 * Use {@link android.util.EventLog} instead.
 */
@Deprecated
public class EventLogTags {
    public static class Description {
        public final int mTag;