Skip to content

Commit 687020e

Browse files
authored
Merge pull request #5543 from mhmdanas/remove-empty-string-concat
Remove unnecessary concat with empty string
2 parents 8c75b96 + b820e9a commit 687020e

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)