Skip to content

Commit

Permalink
# ignite-335 minor
Browse files Browse the repository at this point in the history
  • Loading branch information
sboikov committed Feb 26, 2015
1 parent 38ea38b commit ad7f5d8
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -149,11 +149,11 @@ public final class ContinuousQuery<K, V> extends Query<ContinuousQuery<K,V>> {
* which allows to iterate through entries which already existed at the
* time continuous query is executed.
*
* @param initQuery Initial query.
* @param initQry Initial query.
* @return {@code this} for chaining.
*/
public ContinuousQuery<K, V> setInitialQuery(Query initQuery) {
this.initQry = initQuery;
public ContinuousQuery<K, V> setInitialQuery(Query initQry) {
this.initQry = initQry;

return this;
}
Expand Down

0 comments on commit ad7f5d8

Please sign in to comment.