Add new line "\n" to seperate long messages.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1950 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jlin16 2006-11-14 07:23:52 +00:00
parent 380191dd24
commit b8cc11a572
1 changed files with 1 additions and 1 deletions

View File

@ -860,7 +860,7 @@ public class FpdFrameworkModules extends IInternalFrame {
if (vExceptions.size() > 0) {
String errorMsg = "";
for (int i = 0; i < vExceptions.size(); ++i) {
errorMsg += " " + vExceptions.get(i);
errorMsg += " " + vExceptions.get(i) + "\n";
}
JOptionPane.showMessageDialog(frame, "Error occurred during synchronization:" + errorMsg);
}