Author: rareddy
Date: 2009-09-18 18:50:12 -0400 (Fri, 18 Sep 2009)
New Revision: 1414
Modified:
branches/6.2.x/adminshell/src/main/resources/scripts/adminapi.bsh
Log:
TEIID-841: contents is not boolean, it needs to be checked for null
Modified: branches/6.2.x/adminshell/src/main/resources/scripts/adminapi.bsh
===================================================================
--- branches/6.2.x/adminshell/src/main/resources/scripts/adminapi.bsh 2009-09-18 22:09:54
UTC (rev 1413)
+++ branches/6.2.x/adminshell/src/main/resources/scripts/adminapi.bsh 2009-09-18 22:50:12
UTC (rev 1414)
@@ -382,7 +382,7 @@
contents = currentContext().internalAdmin.exportExtensionModule(sourceName);
- if (contents) {
+ if (contents != null) {
ObjectConverterUtil.write(contents, fileName);
}
else {
Show replies by date