File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/com/springinpractice/ch04/web Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
package com .springinpractice .ch04 .web ;
2
2
3
- import org .apache .commons .lang .builder .ToStringBuilder ;
4
- import org .apache .commons .lang .builder .ToStringStyle ;
3
+ import org .apache .commons .lang3 .builder .ToStringBuilder ;
4
+ import org .apache .commons .lang3 .builder .ToStringStyle ;
5
5
6
6
/**
7
7
* @author Willie Wheeler (willie.wheeler@gmail.com)
@@ -44,9 +44,9 @@ public class AccountForm {
44
44
45
45
public String toString () {
46
46
return new ToStringBuilder (this , ToStringStyle .SHORT_PREFIX_STYLE )
47
+ .append ("userName" , username )
47
48
.append ("firstName" , firstName )
48
49
.append ("lastName" , lastName )
49
- .append ("userName" , username )
50
50
.append ("email" , email )
51
51
.append ("marketingOk" , marketingOk )
52
52
.append ("acceptTerms" , acceptTerms )
You can’t perform that action at this time.
0 commit comments