You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -213,9 +209,9 @@ public final boolean process(Set<? extends TypeElement> annotations, RoundEnviro
213
209
processing round.
214
210
*/
215
211
if (processingOver) {
216
-
for (Map.Entry<String, Element> e : postponed.entrySet()) {
217
-
javaVisitorContext.warn("Bean definition generation [" + e.getKey() + "] skipped from processing because of prior error." +
218
-
" This error is normally due to missing classes on the classpath. Verify the compilation classpath is correct to resolve the problem.", e.getValue());
212
+
for (Map.Entry<String, PostponeToNextRoundException> e : postponed.entrySet()) {
213
+
javaVisitorContext.warn("Bean definition generation [" + e.getKey() + "] skipped from processing because of prior error: [" + e.getValue().getPath() + "]." +
214
+
" This error is normally due to missing classes on the classpath. Verify the compilation classpath is correct to resolve the problem.", (Element) e.getValue().getErrorElement());
0 commit comments