作者 caohong

StringBuilder append方法改为链式调用

@@ -92,7 +92,7 @@ public class DictUtils @@ -92,7 +92,7 @@ public class DictUtils
92 { 92 {
93 if (value.equals(dict.getDictValue())) 93 if (value.equals(dict.getDictValue()))
94 { 94 {
95 - propertyString.append(dict.getDictLabel() + separator); 95 + propertyString.append(dict.getDictLabel()).append(separator);
96 break; 96 break;
97 } 97 }
98 } 98 }
@@ -132,7 +132,7 @@ public class DictUtils @@ -132,7 +132,7 @@ public class DictUtils
132 { 132 {
133 if (label.equals(dict.getDictLabel())) 133 if (label.equals(dict.getDictLabel()))
134 { 134 {
135 - propertyString.append(dict.getDictValue() + separator); 135 + propertyString.append(dict.getDictValue()).append(separator);
136 break; 136 break;
137 } 137 }
138 } 138 }