Skip to content

Commit

Permalink
fix checkstyle issue
Browse files Browse the repository at this point in the history
  • Loading branch information
testforstephen committed Mar 21, 2024
1 parent c1fc026 commit e056e46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ private List<ResolutionItem> resolveMainClassUnderProject(final String projectNa
IJavaProject javaProject = ProjectUtils.getJavaProject(projectName);
IJavaSearchScope searchScope = SearchEngine.createJavaSearchScope(javaProject == null ? new IJavaProject[0] : new IJavaProject[] {javaProject},
IJavaSearchScope.REFERENCED_PROJECTS | IJavaSearchScope.SOURCES);
SearchPattern pattern = createMainMethodSearchPattern();;
SearchPattern pattern = createMainMethodSearchPattern();
final List<ResolutionItem> res = new ArrayList<>();
SearchRequestor requestor = new SearchRequestor() {
@Override
Expand Down

0 comments on commit e056e46

Please sign in to comment.