Skip to content

Commit

Permalink
fix: Ignore CDI related classes when finding component location (#20405)
Browse files Browse the repository at this point in the history
  • Loading branch information
Artur- authored Nov 4, 2024
1 parent 731212e commit eb75804
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ public class ComponentTracker {
private static String[] prefixesToSkip = new String[] {
"com.vaadin.flow.component.", "com.vaadin.flow.di.",
"com.vaadin.flow.dom.", "com.vaadin.flow.internal.",
"com.vaadin.flow.spring.", "java.", "jdk.",
"org.springframework.beans.", };
"com.vaadin.flow.spring.", "com.vaadin.cdi.", "java.", "jdk.",
"org.springframework.beans.", "org.jboss.weld.", };

/**
* Represents a location in the source code.
Expand Down

0 comments on commit eb75804

Please sign in to comment.