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

Commit abf85d06 authored by Elliott Hughes's avatar Elliott Hughes Committed by Android (Google) Code Review
Browse files

Merge "Fix typo." into main

parents 93ae6995 26ec0ee8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12494,7 +12494,7 @@ public final class Settings {
         * backup_finished_notification_receivers  (String[])
         * </pre>
         *
         * backup_finished_notification_receivers uses ":" as delimeter for values.
         * backup_finished_notification_receivers uses ":" as delimiter for values.
         *
         * <p>
         * Type: string
+2 −2
Original line number Diff line number Diff line
@@ -526,7 +526,7 @@ public class TextUtils {
     * A simple string splitter.
     *
     * <p>If the final character in the string to split is the delimiter then no empty string will
     * be returned for the empty string after that delimeter. That is, splitting <tt>"a,b,"</tt> on
     * be returned for the empty string after that delimiter. That is, splitting <tt>"a,b,"</tt> on
     * comma will return <tt>"a", "b"</tt>, not <tt>"a", "b", ""</tt>.
     */
    public static class SimpleStringSplitter implements StringSplitter, Iterator<String> {
@@ -537,7 +537,7 @@ public class TextUtils {

        /**
         * Initializes the splitter. setString may be called later.
         * @param delimiter the delimeter on which to split
         * @param delimiter the delimiter on which to split
         */
        public SimpleStringSplitter(char delimiter) {
            mDelimiter = delimiter;
+1 −1
Original line number Diff line number Diff line
@@ -102,7 +102,7 @@ public class ProcFileReader implements Closeable {
     * Find buffer index of next token delimiter, usually space or newline.
     * Fills buffer as needed.
     *
     * @return Index of next delimeter, otherwise -1 if no tokens remain on
     * @return Index of next delimiter, otherwise -1 if no tokens remain on
     *         current line.
     */
    private int nextTokenIndex() throws IOException {