Skip to content

Commit

Permalink
dbeaver#22963 Rename variable in CubridProcedure.java file
Browse files Browse the repository at this point in the history
  • Loading branch information
longhaseng52 committed Mar 21, 2024
1 parent 2a1b921 commit 00e5b3f
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

public class CubridProcedure extends GenericProcedure
{
private List<CubridProcedureParameter> pro_columns;
private List<CubridProcedureParameter> proColumns;
private String returnType;

public CubridProcedure(
Expand Down Expand Up @@ -95,21 +95,21 @@ public String getDescription() {
}

public void addColumn(@NotNull CubridProcedureParameter column) {
if (this.pro_columns == null) {
this.pro_columns = new ArrayList<>();
if (this.proColumns == null) {
this.proColumns = new ArrayList<>();
}
this.pro_columns.add(column);
this.proColumns.add(column);
}

@Nullable
public List<CubridProcedureParameter> getParams(@NotNull DBRProgressMonitor monitor) throws DBException {
if (pro_columns == null) {
if (proColumns == null) {
loadProcedureColumns(monitor);
if (pro_columns == null) {
pro_columns = new ArrayList<>();
if (proColumns == null) {
proColumns = new ArrayList<>();
}
}
return pro_columns;
return proColumns;
}

@NotNull
Expand Down

0 comments on commit 00e5b3f

Please sign in to comment.