From 62725db86250b754d936c57edd67ce3f8e335019 Mon Sep 17 00:00:00 2001 From: jianghongdong Date: Fri, 3 Aug 2018 15:33:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=AA=E4=BA=BA=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E6=A0=A1=E9=AA=8C=EF=BC=8C=E4=BF=AE=E6=94=B9=E6=B3=95?= =?UTF-8?q?=E4=BA=BA=E4=BF=A1=E8=B4=B7=E6=97=B6=E7=9A=84=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src_core/com/tenwa/comm/credit/CreditBodyGuardAction.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src_core/com/tenwa/comm/credit/CreditBodyGuardAction.java b/src_core/com/tenwa/comm/credit/CreditBodyGuardAction.java index 12865f9c1..3d20aa41f 100644 --- a/src_core/com/tenwa/comm/credit/CreditBodyGuardAction.java +++ b/src_core/com/tenwa/comm/credit/CreditBodyGuardAction.java @@ -81,7 +81,9 @@ public class CreditBodyGuardAction { String personArr = ""; //获取到的所有人员信息对象存入personList中 List personList = new ArrayList<>(); - personList.add(borrowerResult); + if(borrowerResult != null){ + personList.add(borrowerResult); + } if(coborrowerResult != null){ personList.add(coborrowerResult); }