Skip to content

Commit

Permalink
[16143] Modification based on review.
Browse files Browse the repository at this point in the history
  • Loading branch information
wcutshall committed Dec 12, 2024
1 parent 98368f9 commit d8a5314
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ fun Bundle.isElr(): Boolean {
* @return RSMessageType of this Bundle.
*/
fun Bundle.getRSMessageType(): RSMessageType {
when {
isElr() -> return RSMessageType.LAB_RESULT
else -> return RSMessageType.UNKNOWN
return when {
isElr() -> RSMessageType.LAB_RESULT
else -> RSMessageType.UNKNOWN
}
}

Expand Down

0 comments on commit d8a5314

Please sign in to comment.