Skip to content

Commit

Permalink
Revert "DOC-4252 added missing Bicycle class"
Browse files Browse the repository at this point in the history
This reverts commit 1409ba7.
  • Loading branch information
andy-stark-redis committed Sep 20, 2024
1 parent 1409ba7 commit 11a7056
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/test/java/io/redis/examples/QueryFtExample.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,6 @@
import redis.clients.jedis.search.schemafields.TagField;
import redis.clients.jedis.search.SearchResult;
import redis.clients.jedis.exceptions.JedisDataException;

class Bicycle {
public String brand;
public String model;
public BigDecimal price;
public String description;
public String condition;

public Bicycle(String brand, String model, BigDecimal price, String condition, String description) {
this.brand = brand;
this.model = model;
this.price = price;
this.condition = condition;
this.description = description;
}
}
// HIDE_END

// HIDE_START
Expand Down

0 comments on commit 11a7056

Please sign in to comment.