Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanyuan2021 committed Sep 24, 2024
1 parent e4cd09b commit 792c726
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ private URL[] getBizUcp(BizModel bizModel) {

private URL[] getPluginURLs(BizModel bizModel) {
List<URL> pluginUrls = new ArrayList<>();
for (Plugin plugin : bizModel.getDependentPlugins()) {
for (Plugin plugin : bizModel.getDependentPlugins()) {
pluginUrls.add(plugin.getPluginURL());
}
return pluginUrls.toArray(new URL[pluginUrls.size()]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,12 @@ private boolean isEmbedEnable() {
return true;
}
if (SPRING_BOOT_LOADER_CLASS != null
&& SPRING_BOOT_LOADER_CLASS.isAssignableFrom(this.getClass().getClassLoader()
&& SPRING_BOOT_LOADER_CLASS.isAssignableFrom(this.getClass().getClassLoader()
.getClass())) {
return true;
}
if (SPRING_BOOT_NEW_LOADER_CLASS != null
&& SPRING_BOOT_NEW_LOADER_CLASS.isAssignableFrom(this.getClass().getClassLoader()
&& SPRING_BOOT_NEW_LOADER_CLASS.isAssignableFrom(this.getClass().getClassLoader()
.getClass())) {
return true;
}
Expand Down

0 comments on commit 792c726

Please sign in to comment.