Example #1
0
 private boolean checkInspectBaseStatus(StringBuilder msg, InspectBase inspectBase) {
   boolean flag = true;
   InspectStatus inspectStatus = inspectBase.checkStatus();
   if (inspectStatus.isError()) {
     flag = false;
     msg.append(InspectUtil.formatStatusForWeb(inspectStatus)).append("\n");
   }
   return flag;
 }