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

Commit 26ec0ee8 authored by Elliott Hughes's avatar Elliott Hughes
Browse files

Fix typo.

It's "delimiter".

Change-Id: I725414b5f745c658368c8bbcfb8f261b09ed937a
parent eedb4e8e
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -12494,7 +12494,7 @@ public final class Settings {
         * backup_finished_notification_receivers  (String[])
         * backup_finished_notification_receivers  (String[])
         * </pre>
         * </pre>
         *
         *
         * backup_finished_notification_receivers uses ":" as delimeter for values.
         * backup_finished_notification_receivers uses ":" as delimiter for values.
         *
         *
         * <p>
         * <p>
         * Type: string
         * Type: string
+2 −2
Original line number Original line Diff line number Diff line
@@ -526,7 +526,7 @@ public class TextUtils {
     * A simple string splitter.
     * A simple string splitter.
     *
     *
     * <p>If the final character in the string to split is the delimiter then no empty string will
     * <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>.
     * comma will return <tt>"a", "b"</tt>, not <tt>"a", "b", ""</tt>.
     */
     */
    public static class SimpleStringSplitter implements StringSplitter, Iterator<String> {
    public static class SimpleStringSplitter implements StringSplitter, Iterator<String> {
@@ -537,7 +537,7 @@ public class TextUtils {


        /**
        /**
         * Initializes the splitter. setString may be called later.
         * 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) {
        public SimpleStringSplitter(char delimiter) {
            mDelimiter = delimiter;
            mDelimiter = delimiter;
+1 −1
Original line number Original line 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.
     * Find buffer index of next token delimiter, usually space or newline.
     * Fills buffer as needed.
     * 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.
     *         current line.
     */
     */
    private int nextTokenIndex() throws IOException {
    private int nextTokenIndex() throws IOException {