Skip to content

Commit

Permalink
#17391 fix npe
Browse files Browse the repository at this point in the history
  • Loading branch information
n5a5 committed Sep 2, 2022
1 parent c2d26ee commit aa4d8ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ private List<DBSProcedureParameter> getOutputParametersFromMeta() {
}
try {
final Collection<? extends DBSProcedureParameter> params = procedure.getParameters(getConnection().getProgressMonitor());
if (params.isEmpty()) {
if (CommonUtils.isEmpty(params)) {
return Collections.emptyList();
}
final List<DBSProcedureParameter> outputParams = new ArrayList<>();
Expand Down

0 comments on commit aa4d8ce

Please sign in to comment.