Skip to content

Commit f2b2630

Browse files
committed
Code cleanup.
1 parent ec993f8 commit f2b2630

File tree

1 file changed

+2
-1
lines changed
  • subprojects/tdd-in-kotlin/src/main/kotlin/org/sdkotlin/tdd/sorting

1 file changed

+2
-1
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
package org.sdkotlin.tdd.sorting
22

3-
fun <T : Comparable<T>> sort(array: Array<T>): Array<T> = array.copyOf().sortedArray()
3+
fun <T : Comparable<T>> sort(array: Array<T>): Array<T> =
4+
array.copyOf().sortedArray()

0 commit comments

Comments
 (0)