Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7076ab6

Browse files
committed
Merge pull request #650 from aozarov/master
fix lint issue
2 parents 04ab56e + 53290f5 commit 7076ab6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gcloud-java-datastore/src/test/java/com/google/gcloud/datastore/DatastoreTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ public void testQueryPaginationWithLimit() throws DatastoreException {
473473
.andReturn(rpcMock);
474474
List<RunQueryResponse> responses = buildResponsesForQueryPaginationWithLimit();
475475
List<ByteString> endCursors = Lists.newArrayListWithCapacity(responses.size());
476-
for (RunQueryResponse response: responses) {
476+
for (RunQueryResponse response : responses) {
477477
EasyMock.expect(rpcMock.runQuery(EasyMock.anyObject(RunQueryRequest.class)))
478478
.andReturn(response);
479479
if (response.getBatch().getMoreResults() != QueryResultBatch.MoreResultsType.NOT_FINISHED) {

0 commit comments

Comments
 (0)