You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2017/10/26 17:37:12 UTC

[geode] branch develop updated: GEODE-3909: Use varargs for Query.execute

This is an automated email from the ASF dual-hosted git repository.

upthewaterspout pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 01877ec  GEODE-3909: Use varargs for Query.execute
01877ec is described below

commit 01877ec7685a843076611c53b8d1e94f55a1a525
Author: Dan Smith <up...@apache.org>
AuthorDate: Wed Oct 25 18:27:43 2017 -0700

    GEODE-3909: Use varargs for Query.execute
    
    Changed Object[] to Object...
---
 geode-core/src/main/java/org/apache/geode/cache/query/Query.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geode-core/src/main/java/org/apache/geode/cache/query/Query.java b/geode-core/src/main/java/org/apache/geode/cache/query/Query.java
index 8a7b4a5..cfb59fd 100644
--- a/geode-core/src/main/java/org/apache/geode/cache/query/Query.java
+++ b/geode-core/src/main/java/org/apache/geode/cache/query/Query.java
@@ -125,7 +125,7 @@ public interface Query {
    *         region referred to in the query.
    * 
    */
-  public Object execute(Object[] params) throws FunctionDomainException, TypeMismatchException,
+  public Object execute(Object... params) throws FunctionDomainException, TypeMismatchException,
       NameResolutionException, QueryInvocationTargetException;
 
   /**

-- 
To stop receiving notification emails like this one, please contact
['"commits@geode.apache.org" <co...@geode.apache.org>'].