File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
jnosql-tinkerpop/src/test/java/org/eclipse/jnosql/databases/tinkerpop/mapping/entities Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -79,29 +79,29 @@ public String toString() {
7979 '}' ;
8080 }
8181
82- public static BookBuilder builder () {
83- return new BookBuilder ();
82+ public static MagazineBuilder builder () {
83+ return new MagazineBuilder ();
8484 }
8585
86- public static class BookBuilder {
86+ public static class MagazineBuilder {
8787 private String name ;
8888 private Integer age ;
8989 private Long id ;
9090
91- private BookBuilder () {
91+ private MagazineBuilder () {
9292 }
9393
94- public BookBuilder withName (String name ) {
94+ public MagazineBuilder withName (String name ) {
9595 this .name = name ;
9696 return this ;
9797 }
9898
99- public BookBuilder withAge (Integer age ) {
99+ public MagazineBuilder withAge (Integer age ) {
100100 this .age = age ;
101101 return this ;
102102 }
103103
104- public BookBuilder withId (Long id ) {
104+ public MagazineBuilder withId (Long id ) {
105105 this .id = id ;
106106 return this ;
107107 }
You can’t perform that action at this time.
0 commit comments