Skip to content

Commit

Permalink
Fix Checkstyle warning
Browse files Browse the repository at this point in the history
  • Loading branch information
cpoenisch committed Feb 24, 2021
1 parent 15e9814 commit 4ebcd66
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -237,7 +237,7 @@ private boolean isResourceAdapterUploadEnabled(final ATXInstallation installatio
final ATXConfig config = installation.getConfig();
final Optional<ATXSetting<?>> uploadSetting = config.getSettingByName("uploadThroughResourceAdapter");
if (uploadSetting.isPresent()) {
String value = ((ATXTextSetting) uploadSetting.get()).getValue();
final String value = ((ATXTextSetting) uploadSetting.get()).getValue();
return Integer.parseInt(value) > 0;
}
return false;
Expand Down

0 comments on commit 4ebcd66

Please sign in to comment.