Skip to content

Commit 99956b0

Browse files
committed
feat: fix code structure at couchbase
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
1 parent ae2fcdb commit 99956b0

File tree

1 file changed

+1
-1
lines changed
  • couchdb/src/main/java/org/jnosql/demo/se

1 file changed

+1
-1
lines changed

couchdb/src/main/java/org/jnosql/demo/se/App.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static void main(String[] args) {
3131

3232
template.insert(ironMan);
3333

34-
List<Hero> heroes = template.<Hero>select(Hero.class)
34+
List<Hero> heroes = template.select(Hero.class)
3535
.where("id").eq("iron_man").result();
3636
System.out.println(heroes);
3737

0 commit comments

Comments
 (0)