Showing
1 changed file
with
1 additions
and
5 deletions
| ... | @@ -361,13 +361,9 @@ public class ChmConsignmentDetailService { | ... | @@ -361,13 +361,9 @@ public class ChmConsignmentDetailService { |
| 361 | for (int i = 0; i < modelSplits.length; i++) { | 361 | for (int i = 0; i < modelSplits.length; i++) { |
| 362 | String split = modelSplits[i]; | 362 | String split = modelSplits[i]; |
| 363 | if(split == null){ | 363 | if(split == null){ |
| 364 | - split = ""; | ||
| 365 | - } | ||
| 366 | - modelSb.append(split).append("|"); | ||
| 367 | - //避免多的| | ||
| 368 | - if(i == modelSplit.length){ | ||
| 369 | break; | 364 | break; |
| 370 | } | 365 | } |
| 366 | + modelSb.append(split).append("|"); | ||
| 371 | } | 367 | } |
| 372 | if(modelSb.length() > 0){ | 368 | if(modelSb.length() > 0){ |
| 373 | resultModel = modelSb.toString(); | 369 | resultModel = modelSb.toString(); | ... | ... |
-
Please register or login to post a comment