Skip to content

Commit 805d837

Browse files
authored
Merge pull request #16 from NemoOudeis/refactor-route-type
refactor: change `Route` type from `ArrayList<>` to `List<>`
2 parents 77250dd + 8193cfe commit 805d837

File tree

1 file changed

+1
-1
lines changed
  • rekotlin-router/src/main/java/org/rekotlinrouter

1 file changed

+1
-1
lines changed

rekotlin-router/src/main/java/org/rekotlinrouter/Routable.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package org.rekotlinrouter
33
typealias RoutingCompletionHandler = () -> Unit
44

55
typealias RouteElementIdentifier = String
6-
typealias Route = ArrayList<RouteElementIdentifier>
6+
typealias Route = List<RouteElementIdentifier>
77

88

99
interface Routable {

0 commit comments

Comments
 (0)