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 6b7c6df commit abbfa66Copy full SHA for abbfa66
inject-generator/src/main/java/io/avaje/inject/generator/MetaDataOrdering.java
@@ -67,16 +67,15 @@ int processQueue() {
67
// first run without external dependencies from other modules
68
count = processQueueRound(false, false);
69
} while (count > 0);
70
-
71
- while (count > 0) {
+ do {
72
// run again including externally provided dependencies from other modules
73
count = processQueueRound(true, false);
74
- }
+ } while (count > 0);
75
76
77
// Last ditch effort, match any bean available
78
count = processQueueRound(true, true);
79
80
81
int remaining = queue.size();
82
if (remaining != 0) {
0 commit comments