mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 12:57:04 +05:30
refactor(common): unwrap identical branches
This commit is contained in:
parent
4d9934172b
commit
d1b74a71ad
1 changed files with 1 additions and 3 deletions
|
@ -202,16 +202,14 @@ fun buildCommenterString(
|
||||||
append(' ')
|
append(' ')
|
||||||
append('•')
|
append('•')
|
||||||
append(' ')
|
append(' ')
|
||||||
|
append(createdRelative.toString())
|
||||||
if (updatedRelative != createdRelative) {
|
if (updatedRelative != createdRelative) {
|
||||||
append(createdRelative.toString())
|
|
||||||
append(' ')
|
append(' ')
|
||||||
append('(')
|
append('(')
|
||||||
append("Updated")
|
append("Updated")
|
||||||
append(' ')
|
append(' ')
|
||||||
append(updatedRelative.toString())
|
append(updatedRelative.toString())
|
||||||
append(')')
|
append(')')
|
||||||
} else {
|
|
||||||
append(createdRelative.toString())
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue