Skip to content

Commit

Permalink
Update Translations.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Edivad99 committed Sep 29, 2023
1 parent bba96a9 commit 1be62bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/mods/railcraft/Translations.java
Original file line number Diff line number Diff line change
Expand Up @@ -492,8 +492,8 @@ public static class DamageSource {
}

public static class RoutingTable {
public static final List<String> MANUAL_PAGES = IntStream.rangeClosed(1, 12).boxed()
.map(i -> makeKey("manual", "routing_table.page." + i)).toList();
public static final List<String> MANUAL_PAGES = IntStream.rangeClosed(1, 12)
.mapToObj(i -> makeKey("manual", "routing_table.page." + i)).toList();

public static final String ERROR_BLANK = makeKey("error.routing", "blank");
public static final String ERROR_INVALID_CONSTANT =
Expand Down

0 comments on commit 1be62bd

Please sign in to comment.