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

Commit 2d2f10fa authored by Jesse Wilson's avatar Jesse Wilson Committed by Android Git Automerger
Browse files

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

* commit '28c74257':
  Add @Deprecated to match @deprecated where it's missing.
parents 86372ec4 28c74257
Loading
Loading
Loading
Loading
+15 −15
Original line number Diff line number Diff line
@@ -95827,7 +95827,7 @@
 type="android.net.SSLCertificateSocketFactory"
 static="false"
 final="false"
 deprecated="not deprecated"
 deprecated="deprecated"
 visibility="public"
>
<parameter name="handshakeTimeoutMillis" type="int">
@@ -97927,7 +97927,7 @@
 type="android.net.http.SslCertificate"
 static="false"
 final="false"
 deprecated="not deprecated"
 deprecated="deprecated"
 visibility="public"
>
<parameter name="issuedTo" type="java.lang.String">
@@ -97994,7 +97994,7 @@
 synchronized="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 deprecated="deprecated"
 visibility="public"
>
</method>
@@ -98016,7 +98016,7 @@
 synchronized="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 deprecated="deprecated"
 visibility="public"
>
</method>
@@ -174439,7 +174439,7 @@
 abstract="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 deprecated="deprecated"
 visibility="public"
>
<constructor name="EventLogTags"
@@ -204770,7 +204770,7 @@
 synchronized="true"
 static="false"
 final="false"
 deprecated="not deprecated"
 deprecated="deprecated"
 visibility="public"
>
</method>
@@ -205316,7 +205316,7 @@
 synchronized="true"
 static="false"
 final="false"
 deprecated="not deprecated"
 deprecated="deprecated"
 visibility="public"
>
<parameter name="flag" type="boolean">
@@ -207441,7 +207441,7 @@
 synchronized="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 deprecated="deprecated"
 visibility="public"
>
<parameter name="view" type="android.webkit.WebView">
@@ -216000,7 +216000,7 @@
 synchronized="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 deprecated="deprecated"
 visibility="public"
>
</method>
@@ -413705,7 +413705,7 @@
 abstract="true"
 static="false"
 final="false"
 deprecated="not deprecated"
 deprecated="deprecated"
 visibility="public"
>
<method name="getLength"
@@ -414194,7 +414194,7 @@
 abstract="true"
 static="false"
 final="false"
 deprecated="not deprecated"
 deprecated="deprecated"
 visibility="public"
>
<method name="characters"
@@ -414409,7 +414409,7 @@
 abstract="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 deprecated="deprecated"
 visibility="public"
>
<implements name="org.xml.sax.DTDHandler">
@@ -414876,7 +414876,7 @@
 abstract="true"
 static="false"
 final="false"
 deprecated="not deprecated"
 deprecated="deprecated"
 visibility="public"
>
<method name="parse"
@@ -416308,7 +416308,7 @@
 abstract="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 deprecated="deprecated"
 visibility="public"
>
<implements name="org.xml.sax.AttributeList">
@@ -417797,7 +417797,7 @@
 abstract="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 deprecated="deprecated"
 visibility="public"
>
<method name="makeParser"
+1 −0
Original line number Diff line number Diff line
@@ -102,6 +102,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;
+2 −0
Original line number Diff line number Diff line
@@ -1029,6 +1029,7 @@ public class WebSettings {
     * @deprecated This method has been deprecated in favor of
     *             {@link #setPluginState}
     */
    @Deprecated
    public synchronized void setPluginsEnabled(boolean flag) {
        setPluginState(PluginState.ON);
    }
@@ -1211,6 +1212,7 @@ public class WebSettings {
     * @return True if plugins are enabled.
     * @deprecated This method has been replaced by {@link #getPluginState}
     */
    @Deprecated
    public synchronized boolean getPluginsEnabled() {
        return mPluginState == PluginState.ON;
    }
Loading