[R-gregmisc-users] SF.net SVN: r-gregmisc:[1595] trunk/gdata/R/read.xls.R
Brought to you by:
warnes
From: <wa...@us...> - 2012-08-22 14:29:51
|
Revision: 1595 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1595&view=rev Author: warnes Date: 2012-08-22 14:29:40 +0000 (Wed, 22 Aug 2012) Log Message: ----------- Always close the connection. Modified Paths: -------------- trunk/gdata/R/read.xls.R Modified: trunk/gdata/R/read.xls.R =================================================================== --- trunk/gdata/R/read.xls.R 2012-08-13 22:13:40 UTC (rev 1594) +++ trunk/gdata/R/read.xls.R 2012-08-22 14:29:40 UTC (rev 1595) @@ -70,11 +70,11 @@ else stop("Unknown method", method) - close(con) - if(verbose) cat("Done.\n") } + close(con) + retval } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |