Skip to content

Commit

Permalink
Excluded a property from the index (#270)
Browse files Browse the repository at this point in the history
* Excluded a property from the index

For doc purposes

* Update Concepts.java
  • Loading branch information
WalterHub authored and lesv committed Jul 12, 2016
1 parent 3048d29 commit e87a035
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,8 @@ public void testProperties() {
.set("done", false)
.set("priority", 4)
.set("percent_complete", 10.0)
.set("description", "Learn Cloud Datastore")
.set("description",
StringValue.builder("Learn Cloud Datastore").excludeFromIndexes(true).build())
.build();
// [END properties]
assertValidEntity(task);
Expand Down

0 comments on commit e87a035

Please sign in to comment.