File tree Expand file tree Collapse file tree
appengine-java8/datastore/src/test/java/com/example/appengine Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -615,7 +615,6 @@ public void queryRestrictions_inequalitySortedFirst_returnsMatchedEntities() thr
615615 datastore .put (ImmutableList .<Entity >of (a , b , c , d ));
616616 long minBirthYear = 1940 ;
617617
618- // [START gae_java8_datastore_inequality_filters_sort_orders_valid]
619618 Filter birthYearMinFilter =
620619 new FilterPredicate ("birthYear" , FilterOperator .GREATER_THAN_OR_EQUAL , minBirthYear );
621620
@@ -624,7 +623,6 @@ public void queryRestrictions_inequalitySortedFirst_returnsMatchedEntities() thr
624623 .setFilter (birthYearMinFilter )
625624 .addSort ("birthYear" , SortDirection .ASCENDING )
626625 .addSort ("lastName" , SortDirection .ASCENDING );
627- // [END gae_java8_datastore_inequality_filters_sort_orders_valid]
628626
629627 // Assert
630628 List <Entity > results =
You can’t perform that action at this time.
0 commit comments