Skip to content

Commit

Permalink
fixed duplicate bean index elements appearing when scanning file in t…
Browse files Browse the repository at this point in the history
…wo passes
  • Loading branch information
martinlippert committed Feb 11, 2025
1 parent da0a8b8 commit f2e9a3a
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ public void addSymbols(Annotation node, ITypeBinding typeBinding, Collection<ITy
else {
WebfluxRouterSymbolProvider.createWebfluxElements(method, context, doc, childElements);
}
} else if (!isWebfluxRouter && SCAN_PASS.TWO.equals(context.getPass())) {
return;
}

boolean isFunction = isFunctionBean(method);
Expand Down

0 comments on commit f2e9a3a

Please sign in to comment.