Skip to content

Commit

Permalink
ignite-2.0 - Javadoc fix + code style
Browse files Browse the repository at this point in the history
  • Loading branch information
agoncharuk committed Apr 26, 2017
1 parent 7d33dd5 commit 4be320a
Showing 1 changed file with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,21 +133,20 @@ public GridH2QueryRequest() {

/**
* @param req Request.
* @return {@code this}.
*/
public GridH2QueryRequest(GridH2QueryRequest req) {
this.reqId = req.reqId;
this.caches = req.caches;
this.topVer = req.topVer;
this.parts = req.parts;
this.qryParts = req.qryParts;
this.pageSize = req.pageSize;
this.qrys = req.qrys;
this.flags = req.flags;
this.tbls = req.tbls;
this.timeout = req.timeout;
this.params = req.params;
this.paramsBytes = req.paramsBytes;
reqId = req.reqId;
caches = req.caches;
topVer = req.topVer;
parts = req.parts;
qryParts = req.qryParts;
pageSize = req.pageSize;
qrys = req.qrys;
flags = req.flags;
tbls = req.tbls;
timeout = req.timeout;
params = req.params;
paramsBytes = req.paramsBytes;
}

/**
Expand Down Expand Up @@ -359,6 +358,7 @@ public GridH2QueryRequest timeout(int timeout) {
}

/** {@inheritDoc} */
@SuppressWarnings("IfMayBeConditional")
@Override public void unmarshall(Marshaller m, GridKernalContext ctx) {
if (params != null)
return;
Expand Down

0 comments on commit 4be320a

Please sign in to comment.