diff --git a/idea/testData/android/lint/log.kt b/idea/testData/android/lint/log.kt index ebf4d97adba..cc9e5e959c2 100644 --- a/idea/testData/android/lint/log.kt +++ b/idea/testData/android/lint/log.kt @@ -26,8 +26,8 @@ class LogTest { } fun checkWrongTag(tag: String) { - if (Log.isLoggable(TAG1, Log.DEBUG)) { - Log.d(TAG2, "message") // warn: mismatched tags! + if (Log.isLoggable(TAG1, Log.DEBUG)) { + Log.d(TAG2, "message") // warn: mismatched tags! } if (Log.isLoggable("my_tag", Log.DEBUG)) { Log.d("other_tag", "message") // warn: mismatched tags!