buildframework/helium/external/helium-antlib/signaling/src/com/nokia/helium/signal/ant/types/SignalStatusDef.java
changeset 179 d8ac696cc51f
parent 1 be27ed110b50
equal deleted inserted replaced
1:be27ed110b50 179:d8ac696cc51f
    36     /**
    36     /**
    37      * This post action will fail the build if any pending failure exists. 
    37      * This post action will fail the build if any pending failure exists. 
    38      * @throws BuildException
    38      * @throws BuildException
    39      */
    39      */
    40     public void execute(Project prj, String module, String[] targetNames) {
    40     public void execute(Project prj, String module, String[] targetNames) {
    41         log.debug("SignalStatusDef:execute:");
       
    42         if (SignalStatusList.getDeferredSignalList().hasSignalInList()) {
    41         if (SignalStatusList.getDeferredSignalList().hasSignalInList()) {
    43             log.debug("SignalStatusDef:execute: Error message: " + SignalStatusList.getDeferredSignalList().getErrorMsg());
       
    44             throw new BuildException(SignalStatusList.getDeferredSignalList().getErrorMsg());
    42             throw new BuildException(SignalStatusList.getDeferredSignalList().getErrorMsg());
    45         }
    43         }
    46     }
    44     }
    47 }
    45 }