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

Commit 5c1989a3 authored by Yohei Yukawa's avatar Yohei Yukawa
Browse files

Fix lint errors around import lines in IInputConnectionWrapper

This is a mechanical code clean-up. No behavior change is expected.

Bug: 113177698
Test: Run the following command to confirm that there remains no lint
      error regarding import lines:
  prebuilts/checkstyle/checkstyle.py -f \
  frameworks/base/core/java/com/android/internal/view/IInputConnectionWrapper.java
Change-Id: Ife60e0b4234b5c8bc2d4d192b33dc97b156ea7fc
parent 97614b46
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -16,9 +16,6 @@

package com.android.internal.view;

import com.android.internal.annotations.GuardedBy;
import com.android.internal.os.SomeArgs;

import android.annotation.NonNull;
import android.annotation.Nullable;
import android.annotation.UnsupportedAppUsage;
@@ -37,6 +34,9 @@ import android.view.inputmethod.InputConnectionInspector;
import android.view.inputmethod.InputConnectionInspector.MissingMethodFlags;
import android.view.inputmethod.InputContentInfo;

import com.android.internal.annotations.GuardedBy;
import com.android.internal.os.SomeArgs;

public abstract class IInputConnectionWrapper extends IInputContext.Stub {
    private static final String TAG = "IInputConnectionWrapper";
    private static final boolean DEBUG = false;