File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
builder/src/main/java/me/zbl/builder Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -35,9 +35,12 @@ public class Application {
3535
3636 public static void main (String [] args ) {
3737
38- Person personWang = new Person .Builder ().name ("小王" ).age (25 ).nationality (Nationality .CHINA ).skinColor (SkinColor .YELLOW ).build ();
39- Person personZhang = new Person .Builder ().name ("小张" ).age (28 ).nationality (Nationality .USA ).skinColor (SkinColor .WHITE ).build ();
40- Person personLiu = new Person .Builder ().name ("老王" ).age (48 ).nationality (Nationality .JAPAN ).skinColor (SkinColor .YELLOW ).build ();
38+ Person personWang =
39+ new Person .Builder ().name ("小王" ).age (25 ).nationality (Nationality .CHINA ).skinColor (SkinColor .YELLOW ).build ();
40+ Person personZhang =
41+ new Person .Builder ().name ("小张" ).age (28 ).nationality (Nationality .USA ).skinColor (SkinColor .WHITE ).build ();
42+ Person personLiu =
43+ new Person .Builder ().name ("老王" ).age (48 ).nationality (Nationality .JAPAN ).skinColor (SkinColor .YELLOW ).build ();
4144
4245 LOGGER .info (personWang .toString ());
4346 LOGGER .info (personZhang .toString ());
You can’t perform that action at this time.
0 commit comments