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

Commit 350c73fb authored by Yohei Yukawa's avatar Yohei Yukawa Committed by Android (Google) Code Review
Browse files

Merge "Overrides ImeSubtypeListItem#toString"

parents 840ff4ae 1c63079b
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -101,6 +101,17 @@ public class InputMethodSubtypeSwitchingController {
            }
            return mSubtypeName.toString().compareTo(other.mSubtypeName.toString());
        }

        @Override
        public String toString() {
            return "ImeSubtypeListItem{"
                    + "mImeName=" + mImeName
                    + " mSubtypeName=" + mSubtypeName
                    + " mSubtypeId=" + mSubtypeId
                    + " mIsSystemLocale=" + mIsSystemLocale
                    + " mIsSystemLanguage=" + mIsSystemLanguage
                    + "}";
        }
    }

    private static class InputMethodAndSubtypeList {