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

Commit a969dc4e authored by Michael Chan's avatar Michael Chan
Browse files

Unhiding Rfc822Tokenizer.tokenize(CharSequence text, Collection<Rfc822Token> out)

Note that Rfc822Tokenizer.tokenize(CharSequence text) is already in the SDK
and it just wraps the version I am unhiding.

Change-Id: I1ac3b405a04df960fc1e65ca4797d6f5adf85dc4
parent 5c19aeca
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -159352,6 +159352,21 @@
<parameter name="text" type="java.lang.CharSequence">
</parameter>
</method>
<method name="tokenize"
 return="void"
 abstract="false"
 native="false"
 synchronized="false"
 static="true"
 final="false"
 deprecated="not deprecated"
 visibility="public"
>
<parameter name="text" type="java.lang.CharSequence">
</parameter>
<parameter name="out" type="java.util.Collection&lt;android.text.util.Rfc822Token&gt;">
</parameter>
</method>
<method name="tokenize"
 return="android.text.util.Rfc822Token[]"
 abstract="false"
+0 −1
Original line number Diff line number Diff line
@@ -41,7 +41,6 @@ public class Rfc822Tokenizer implements MultiAutoCompleteTextView.Tokenizer {
     * It will try to be tolerant of broken syntax instead of
     * returning an error.
     *
     * @hide
     */
    public static void tokenize(CharSequence text, Collection<Rfc822Token> out) {
        StringBuilder name = new StringBuilder();