Skip to content

Commit b820e9a

Browse files
committed
Remove unnecessary concat with empty string
1 parent b9cd551 commit b820e9a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • app/src/main/java/org/schabi/newpipe/ktx

app/src/main/java/org/schabi/newpipe/ktx/View.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ fun View.animate(
4545
val id = try {
4646
resources.getResourceEntryName(id)
4747
} catch (e: Exception) {
48-
id.toString() + ""
48+
id.toString()
4949
}
5050
val msg = String.format(
5151
"%8s → [%s:%s] [%s %s:%s] execOnEnd=%s", enterOrExit,

0 commit comments

Comments
 (0)