Valentin Kipyatkov
2016-05-04 16:26:31 +03:00
parent c30c695a18
commit bac5c4d70b
+2 -1
View File
@@ -7,6 +7,7 @@ internal object Test {
if (toIndex > size)
throw IndexOutOfBoundsException("toIndex = " + toIndex)
if (fromIndex > toIndex)
throw IllegalArgumentException("fromIndex($fromIndex) > toIndex($toIndex)")
throw IllegalArgumentException("fromIndex(" + fromIndex
+ ") > toIndex(" + toIndex + ")")
}
}