File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
jnosql-oracle-nosql/src/test/java/org/eclipse/jnosql/databases/oracle/integration Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change 1717import java .util .List ;
1818import 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 }
You can’t perform that action at this time.
0 commit comments