1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-02 22:55:26 +02:00

[187530] patch from Rupen to not log exception

This commit is contained in:
David McKnight 2007-06-04 17:54:58 +00:00
parent b4c2702796
commit d4bf6fa10d

View file

@ -12,6 +12,7 @@
*
* Contributors:
* Martin Oberhuber (Wind River) - [168975] Move RSE Events API to Core
* Rupen Mardirossian (IBM) - [187530] Commented out line 192, in order to stop logging of SystemMessageException
********************************************************************************/
package org.eclipse.rse.internal.files.ui.wizards;
@ -188,7 +189,7 @@ public class SystemNewFileWizard
mainPage.setMessage(msg);
ok = false;
} catch (SystemMessageException e) {
SystemBasePlugin.logError(CLASSNAME+ ":", e); //$NON-NLS-1$
//SystemBasePlugin.logError(CLASSNAME+ ":", e); //$NON-NLS-1$
mainPage.setMessage(e.getSystemMessage());
ok = false;
}