Skip to content

Commit

Permalink
feat: fix code structure at couchbase
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <[email protected]>
  • Loading branch information
otaviojava committed Jan 1, 2025
1 parent ae2fcdb commit 99956b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion couchdb/src/main/java/org/jnosql/demo/se/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static void main(String[] args) {

template.insert(ironMan);

List<Hero> heroes = template.<Hero>select(Hero.class)
List<Hero> heroes = template.select(Hero.class)
.where("id").eq("iron_man").result();
System.out.println(heroes);

Expand Down

0 comments on commit 99956b0

Please sign in to comment.