Author: mes
Date: 2010-02-18 16:46:35 -0800 (Thu, 18 Feb 2010)
New Revision: 19380
Modified:
cytoscape/trunk/src/cytoscape/actions/PluginManagerAction.java
Log:
minor reformatting
Modified: cytoscape/trunk/src/cytoscape/actions/PluginManagerAction.java
===================================================================
--- cytoscape/trunk/src/cytoscape/actions/PluginManagerAction.java
2010-02-19 00:34:34 UTC (rev 19379)
+++ cytoscape/trunk/src/cytoscape/actions/PluginManagerAction.java
2010-02-19 00:46:35 UTC (rev 19380)
@@ -166,15 +166,15 @@
if (isExceptionThrown()) {
if (getIOException() != null) {
// failed to read the given url
- logger.error(getIOException().getMessage(), getIOException());
- dialog.setError(PluginManageDialog.CommonError.NOXML.toString());
+
logger.error(getIOException().getMessage(), getIOException());
+
dialog.setError(PluginManageDialog.CommonError.NOXML.toString());
} else if (getJDOMException() != null) {
// failed to parse the xml file at the
url
- logger.error(getJDOMException().getMessage(), getJDOMException());
- dialog.setError(PluginManageDialog.CommonError.BADXML.toString());
+
logger.error(getJDOMException().getMessage(), getJDOMException());
+
dialog.setError(PluginManageDialog.CommonError.BADXML.toString());
} else {
- logger.error(getException().getMessage(), getException());
- dialog.setError(getException().getMessage());
+
logger.error(getException().getMessage(), getException());
+
dialog.setError(getException().getMessage());
}
} else {
List<DownloadableInfo> Unique =
ManagerUtil.getUnique(Mgr.getDownloadables(PluginStatus.CURRENT), Results);
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.