Skip to content

Commit

Permalink
Comsetic changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
vchudnov-g committed Sep 17, 2016
1 parent 1b78e23 commit 8e9e142
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public boolean getMultiple() {
// For tests.
// TODO: Consider putting this block inside the try statement above so users can see the
// expected output without even having to run the snippet.
boolean consistent = (result != null);
boolean consistent = result != null;
if (consistent) {
Entity entityFirst = result.next();
Entity entitySecond = result.next();
Expand Down Expand Up @@ -214,7 +214,6 @@ public boolean run() {
.build();

QueryResults<Entity> result = null;
Entity first = null;

// Run the query
try {
Expand Down

0 comments on commit 8e9e142

Please sign in to comment.