We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5595b68 commit 8e4ca19Copy full SHA for 8e4ca19
common/src/main/kotlin/com/lambda/core/loader/Loader.kt
@@ -37,7 +37,7 @@ object Loader {
37
getInstances<Loadable> { forPackages("com.lambda") }
38
.associateWith { it::class.findAnnotation<LoaderOrder>() }
39
.toList()
40
- .sortedBy { (_, annotation) -> annotation?.phase }
+ .sortedBy { (_, annotation) -> annotation?.phase ?: Phase.Post }
41
.sortedByDescending { (_, annotation) -> annotation?.priority }
42
.map { it.first }
43
0 commit comments