[Spring CI] Spring Data GemFire Nightly-ApacheGeode #44 was SUCCESSFUL (with 1058 tests)

2015-08-23 Thread Spring CI
--- Spring Data GemFire Nightly-ApacheGeode #44 was successful. --- Scheduled 1062 tests in total. https://build.spring.io/browse/SGF-NAG-44/ -- This

Re: Review Request 37702: GEODE-264: Fix varargs compiler warnings

2015-08-23 Thread Anthony Baker
On Aug. 22, 2015, 4:39 p.m., Jacob Barrett wrote: You can leave off the vararg argument completely as well. The null will be implied. ```java method.invoke(null); ``` is the same as ```java method.invoke(null, (Object[]) null); ``` but in my opinion a little more readable.