Skip to content

Commit 2b11399

Browse files
committed
Fix formatting
1 parent 32fdd41 commit 2b11399

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

google-cloud-datastore/src/main/java/com/google/cloud/datastore/StructuredQuery.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,8 @@ B mergeFrom(com.google.datastore.v1.Query queryPb) {
917917
for (com.google.datastore.v1.PropertyReference distinctOnPb : queryPb.getDistinctOnList()) {
918918
addDistinctOn(distinctOnPb.getName());
919919
}
920-
if (queryPb.getFindNearest() != null && queryPb.getFindNearest() != com.google.datastore.v1.FindNearest.getDefaultInstance()) {
920+
if (queryPb.getFindNearest() != null
921+
&& queryPb.getFindNearest() != com.google.datastore.v1.FindNearest.getDefaultInstance()) {
921922
setFindNearest(FindNearest.fromPb(queryPb.getFindNearest()));
922923
}
923924
return self();

0 commit comments

Comments
 (0)