Skip to content

Commit

Permalink
Issue 51466: Startup Properties applied in opposite order
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-jeckels committed Oct 16, 2024
1 parent 434f31b commit bac8a24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/org/labkey/api/module/ModuleLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -2445,7 +2445,7 @@ private void loadStartupProps()
if (!propFiles.isEmpty())
{
List<FileLike> sortedPropFiles = propFiles.stream()
.sorted(Comparator.comparing(FileLike::getName))
.sorted(Comparator.comparing(FileLike::getName).reversed())
.toList();

for (FileLike propFile : sortedPropFiles)
Expand Down

0 comments on commit bac8a24

Please sign in to comment.