From b0c01ad46991df435c7d1e4ea46dffacbc9916ba Mon Sep 17 00:00:00 2001 From: Yohei Yukawa Date: Tue, 27 Oct 2020 15:24:28 -0700 Subject: [PATCH] Use android.util.IndentingPrintWriter instead This only replaces com.android.internal.util.IndentingPrintWriter with android.util.IndentingPrintWriter in InputMethodManagerService since the former was already deprecated and the later is what's currently recommended [1]. Other than that there is no behavior change. [1]: Idd2bfa027733ef384b5a676866a89fb3c35b06cb f800b70dc5fef7aae5945087212a8f2b5f81cae7 Bug: 171827834 Test: presubmit Change-Id: I176f9da16be8953b6fea6e391c88a32dd2746f49 --- .../android/server/inputmethod/InputMethodManagerService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/core/java/com/android/server/inputmethod/InputMethodManagerService.java b/services/core/java/com/android/server/inputmethod/InputMethodManagerService.java index 9947ecd42e313..047f1742f2ca1 100644 --- a/services/core/java/com/android/server/inputmethod/InputMethodManagerService.java +++ b/services/core/java/com/android/server/inputmethod/InputMethodManagerService.java @@ -119,6 +119,7 @@ import android.text.style.SuggestionSpan; import android.util.ArrayMap; import android.util.ArraySet; import android.util.EventLog; +import android.util.IndentingPrintWriter; import android.util.Log; import android.util.LruCache; import android.util.Pair; @@ -161,7 +162,6 @@ import com.android.internal.os.HandlerCaller; import com.android.internal.os.SomeArgs; import com.android.internal.os.TransferPipe; import com.android.internal.util.DumpUtils; -import com.android.internal.util.IndentingPrintWriter; import com.android.internal.view.IInlineSuggestionsRequestCallback; import com.android.internal.view.IInlineSuggestionsResponseCallback; import com.android.internal.view.IInputContext;