Skip to content

Commit 01877ec

Browse files
GEODE-3909: Use varargs for Query.execute
Changed Object[] to Object...
1 parent 9a30e8a commit 01877ec

File tree

1 file changed

+1
-1
lines changed
  • geode-core/src/main/java/org/apache/geode/cache/query

1 file changed

+1
-1
lines changed

geode-core/src/main/java/org/apache/geode/cache/query/Query.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public Object execute() throws FunctionDomainException, TypeMismatchException,
125125
* region referred to in the query.
126126
*
127127
*/
128-
public Object execute(Object[] params) throws FunctionDomainException, TypeMismatchException,
128+
public Object execute(Object... params) throws FunctionDomainException, TypeMismatchException,
129129
NameResolutionException, QueryInvocationTargetException;
130130

131131
/**

0 commit comments

Comments
 (0)