Commit f8df8a8
Nemo Oudeis
refactor: change
the reasoning is (a) that this leaks the implementation detail into the
public API and (2) the the call site usage, e.g.
```
dispatch(SetRouteAction(arrayListOf("route-a", "route-b")
// vs.
dispatch(SetRouteAction(listOf("route-a", "route-b")
```
This does not break API contract, all code using the current version of
ReKotlin-router still compiles fine, because every instance of
`ArrayList` is also a `List`.Route type from ArrayList<> to List<>
1 parent b1ca319 commit f8df8a8
1 file changed
+1
-1
lines changedLines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
| 6 | + | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| |||
0 commit comments