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
…) (#20406)

Fixes vaadin/copilot#48

Co-authored-by: Artur <[email protected]>
  • Loading branch information
vaadin-bot and Artur- authored Nov 4, 2024
1 parent 6f23aed commit c806209
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 c806209

Please sign in to comment.