Skip to content

Commit

Permalink
chore: removed native select method from main class to force users to…
Browse files Browse the repository at this point in the history
… set params on the compiled instance
  • Loading branch information
lvca committed Nov 13, 2023
1 parent 4836d67 commit a34317d
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions engine/src/main/java/com/arcadedb/query/select/Select.java
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,6 @@ public Select parameter(final String parameterName) {
return this;
}

public Select parameter(final String paramName, final Object paramValue) {
if (parameters == null)
parameters = new HashMap<>();
parameters.put(paramName, paramValue);
return this;
}

public Select limit(final int limit) {
checkNotCompiled();
this.limit = limit;
Expand Down

0 comments on commit a34317d

Please sign in to comment.