Removed the printStackTrace() which is used only for debug purpose.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@864 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jwang36 2006-07-10 10:51:01 +00:00
parent 53b8619385
commit 23583a8891
6 changed files with 0 additions and 7 deletions

View File

@ -80,7 +80,6 @@ public class FrameworkBuildTask extends Task{
}
}
} catch (Exception e) {
e.printStackTrace();
throw new BuildException(e.getMessage());
}

View File

@ -291,7 +291,6 @@ public class GenBuildTask extends Ant {
}
popProperties();
}catch (Exception e){
e.printStackTrace();
throw new BuildException(e.getMessage());
}
}

View File

@ -221,7 +221,6 @@ public class ModuleBuildFileGenerator {
xformer.setOutputProperty(OutputKeys.INDENT, "yes");
xformer.transform(source, result);
} catch (Exception ex) {
ex.printStackTrace();
throw new BuildException("Module [" + fpdModuleId.getModule().getName() + "] generating build file failed.\n" + ex.getMessage());
}
}

View File

@ -311,7 +311,6 @@ public class FpdParserTask extends Task {
bw.close();
fw.close();
} catch (Exception e) {
e.printStackTrace();
throw new BuildException("Generate FV file [" + fvFile.getPath() + "] failed. \n" + e.getMessage());
}
}
@ -394,7 +393,6 @@ public class FpdParserTask extends Task {
throw new BuildException(e.getMessage());
}
} catch (Exception e) {
e.printStackTrace();
throw new BuildException("Load FPD file [" + fpdFile.getPath() + "] error. \n" + e.getMessage());
}
}

View File

@ -190,7 +190,6 @@ public class PlatformBuildFileGenerator {
xformer.setOutputProperty(OutputKeys.INDENT, "yes");
xformer.transform(source, result);
} catch (Exception ex) {
ex.printStackTrace();
throw new BuildException("Generate " + platformName + "_build.xml failed. \n" + ex.getMessage());
}
}

View File

@ -230,7 +230,6 @@ public class GlobalData {
}
}
} catch (Exception e) {
e.printStackTrace();
throw new BuildException("Parse workspace Database [" + dbFile.getPath() + "] Error.\n" + e.getMessage());
}
}