Made RouteHistoryItem public.

This commit is contained in:
Andrew Lalis 2023-12-22 10:52:59 -05:00
parent c4e76ca6f2
commit 4f076bdc69
1 changed files with 1 additions and 1 deletions

View File

@ -5,4 +5,4 @@ package com.andrewlalis.javafx_scene_router;
* @param route The route. * @param route The route.
* @param context The context object associated with the route. * @param context The context object associated with the route.
*/ */
record RouteHistoryItem(String route, Object context) {} public record RouteHistoryItem(String route, Object context) {}