Skip to content

Commit

Permalink
Cannot debug in Eclipse IDE Version: 2022-09 (4.25.0) #5706
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Bescos Gascon <[email protected]>
  • Loading branch information
jbescos committed Dec 16, 2022
1 parent ab8713e commit b48b838
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ nb-configuration.xml
.settings/
.project
.classpath
.factorypath

# Asciidoctor
.asciidoctor/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,10 @@ synchronized void init(ProcessingEnvironment processingEnv) {

// get the types
configuredElement = elementUtils.getTypeElement(CONFIGURED_CLASS);
builderType = elementUtils.getTypeElement("io.helidon.common.Builder").asType();
TypeElement builderTypeElement = elementUtils.getTypeElement("io.helidon.common.Builder");
if (builderTypeElement != null) {
builderType = builderTypeElement.asType();
}
TypeElement configTypeElement = elementUtils.getTypeElement("io.helidon.config.Config");
if (configTypeElement != null) {
configType = configTypeElement.asType();
Expand Down

0 comments on commit b48b838

Please sign in to comment.