File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
appengine-java8/datastore/src/test/java/com/example/appengine Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -615,7 +615,6 @@ public void queryRestrictions_inequalitySortedFirst_returnsMatchedEntities() thr
615
615
datastore .put (ImmutableList .<Entity >of (a , b , c , d ));
616
616
long minBirthYear = 1940 ;
617
617
618
- // [START gae_java8_datastore_inequality_filters_sort_orders_valid]
619
618
Filter birthYearMinFilter =
620
619
new FilterPredicate ("birthYear" , FilterOperator .GREATER_THAN_OR_EQUAL , minBirthYear );
621
620
@@ -624,7 +623,6 @@ public void queryRestrictions_inequalitySortedFirst_returnsMatchedEntities() thr
624
623
.setFilter (birthYearMinFilter )
625
624
.addSort ("birthYear" , SortDirection .ASCENDING )
626
625
.addSort ("lastName" , SortDirection .ASCENDING );
627
- // [END gae_java8_datastore_inequality_filters_sort_orders_valid]
628
626
629
627
// Assert
630
628
List <Entity > results =
You can’t perform that action at this time.
0 commit comments