Skip to content

Commit ee33c10

Browse files
committed
feat: update terminology
Signed-off-by: Otavio Santana <[email protected]>
1 parent af3e735 commit ee33c10

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

jnosql-oracle-nosql/src/test/java/org/eclipse/jnosql/databases/oracle/integration/Wine.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public int hashCode() {
9191
return Objects.hashCode(id);
9292
}
9393

94-
public static BeerBuilder builder() {
95-
return new BeerBuilder();
94+
public static WineBuilder builder() {
95+
return new WineBuilder();
9696
}
9797
}
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,28 +17,28 @@
1717
import java.util.List;
1818
import java.util.Map;
1919

20-
public class BeerBuilder {
20+
public class WineBuilder {
2121
private String id;
2222
private List<String> comments;
2323
private List<Crew> crew;
2424
private Map<String, Object> data;
2525

26-
public BeerBuilder id(String id) {
26+
public WineBuilder id(String id) {
2727
this.id = id;
2828
return this;
2929
}
3030

31-
public BeerBuilder comments(List<String> comments) {
31+
public WineBuilder comments(List<String> comments) {
3232
this.comments = comments;
3333
return this;
3434
}
3535

36-
public BeerBuilder crew(List<Crew> crew) {
36+
public WineBuilder crew(List<Crew> crew) {
3737
this.crew = crew;
3838
return this;
3939
}
4040

41-
public BeerBuilder data(Map<String, Object> data) {
41+
public WineBuilder data(Map<String, Object> data) {
4242
this.data = data;
4343
return this;
4444
}

0 commit comments

Comments
 (0)