Merge "Fix LintImplTrimIndent lint issue in UnsafeNewApiCallsDetector" into androidx-master-dev
diff --git a/lint-checks/src/main/java/androidx/build/lint/UnsafeNewApiCallsDetector.kt b/lint-checks/src/main/java/androidx/build/lint/UnsafeNewApiCallsDetector.kt
index 7400559..220b079 100644
--- a/lint-checks/src/main/java/androidx/build/lint/UnsafeNewApiCallsDetector.kt
+++ b/lint-checks/src/main/java/androidx/build/lint/UnsafeNewApiCallsDetector.kt
@@ -485,7 +485,7 @@
This will still allow them to be removed, but if they are kept, they will not be
inlined.
Failure to do the above may result in overall performance degradation.
- """.trimIndent(),
+ """,
Category.CORRECTNESS, 5, Severity.ERROR,
Implementation(UnsafeNewApiCallsDetector::class.java, Scope.JAVA_FILE_SCOPE)
).setAndroidSpecific(true)