Skip to content

Commit

Permalink
Merge pull request #541 from exadel-inc/bugfix/EAK-540
Browse files Browse the repository at this point in the history
[EAK-540] Handled the configuration-less plugin setup
  • Loading branch information
smiakchilo authored Aug 21, 2024
2 parents f6c8183 + 75bf38b commit 0fcceee
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ private void populateReferenceEntries(PluginSettings.Builder builder) {
.stream()
.filter(plugin -> PLUGIN_ARTIFACT_ID.equals(plugin.getArtifactId()))
.map(ConfigurationContainer::getConfiguration)
.filter(Xpp3Dom.class::isInstance)
.map(Xpp3Dom.class::cast)
.findFirst()
.orElse(null);
Expand Down

0 comments on commit 0fcceee

Please sign in to comment.