changeset 12303:9fd3cfe65ce9 octave-forge

Add try catch around call to chk_spreadsheet_support just to be sure
author prnienhuis
date Thu, 09 Jan 2014 20:10:50 +0000
parents 5dd749dcc83f
children 013403620591
files main/io/PKG_DEL
diffstat 1 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/main/io/PKG_DEL	Thu Jan 09 12:09:07 2014 +0000
+++ b/main/io/PKG_DEL	Thu Jan 09 20:10:50 2014 +0000
@@ -1,6 +1,10 @@
 ## PKG_DEL
 ##
-## All we need to do is to remove all Java spreadsheet class libs loaded
-## by chk_spreadsheet_support from the javaclasspath
+## All we need to do is try to remove all Java spreadsheet class libs loaded
+## by chk_spreadsheet_support.m from the javaclasspath
 
-chk_spreadsheet_support ("", -1);
+try
+  chk_spreadsheet_support ("", -1);
+catch
+  warning ("Couldn't remove spreadsheet I/O javaclasspath entries while unloading io pkg");
+end_try_catch