Updated create2DList method signature

This commit is contained in:
Auxilor
2022-02-03 11:47:26 +00:00
parent e10566da66
commit d49405f839

View File

@@ -17,5 +17,5 @@ fun Iterable<String>.containsIgnoreCase(element: String): Boolean =
/**
* @see ListUtils.create2DList
*/
fun <T> create2DList(rows: Int, columns: Int): List<List<T>> =
fun <T> create2DList(rows: Int, columns: Int): MutableList<MutableList<T>> =
ListUtils.create2DList(rows, columns)