[Adapdev-commits] Adapdev/src/Adapdev.NVelocity/Dvsl Dvsl.cs,1.5,1.6 DvslNodeContext.cs,1.5,1.6 Dvsl
Status: Beta
Brought to you by:
intesar66
From: Sean M. <int...@us...> - 2005-11-26 08:09:34
|
Update of /cvsroot/adapdev/Adapdev/src/Adapdev.NVelocity/Dvsl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18792/src/Adapdev.NVelocity/Dvsl Modified Files: Dvsl.cs DvslNodeContext.cs DvslNodeImpl.cs Log Message: Cleaned up several warnings Restored some lingering files Index: DvslNodeImpl.cs =================================================================== RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.NVelocity/Dvsl/DvslNodeImpl.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** DvslNodeImpl.cs 16 Nov 2005 07:01:49 -0000 1.5 --- DvslNodeImpl.cs 26 Nov 2005 08:09:22 -0000 1.6 *************** *** 209,213 **** return tw.ToString(); } ! catch (Exception e) { } --- 209,213 ---- return tw.ToString(); } ! catch (Exception) { } Index: DvslNodeContext.cs =================================================================== RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.NVelocity/Dvsl/DvslNodeContext.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** DvslNodeContext.cs 16 Nov 2005 07:01:49 -0000 1.5 --- DvslNodeContext.cs 26 Nov 2005 08:09:22 -0000 1.6 *************** *** 56,60 **** public override Object InternalGet(String key) { - Object o = null; /* --- 56,59 ---- Index: Dvsl.cs =================================================================== RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.NVelocity/Dvsl/Dvsl.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Dvsl.cs 16 Nov 2005 07:01:49 -0000 1.5 --- Dvsl.cs 26 Nov 2005 08:09:22 -0000 1.6 *************** *** 23,28 **** private VelocityEngine ve = null; - private XmlDocument currentDocument = null; - private StreamWriter currentWriter = null; private IContext toolContext; private IContext userContext; --- 23,26 ---- *************** *** 166,170 **** i = Int32.Parse(val); } ! catch (Exception ee) { } --- 164,168 ---- i = Int32.Parse(val); } ! catch (Exception ) { } *************** *** 209,213 **** SetStylesheet(fr); } ! catch (Exception e) { throw; --- 207,211 ---- SetStylesheet(fr); } ! catch (Exception) { throw; |