From: Michael D. <mik...@us...> - 2004-12-04 22:41:57
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Cfg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1955/NHibernate/Cfg Modified Files: Configuration.cs Log Message: Modified more exceptions to not be "throw e" and instead just be "throw" Moved internal fields from IList to ISet where applicable. Fixed generation of sql from hql that was causing spacing problems with MySql. Index: Configuration.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Cfg/Configuration.cs,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** Configuration.cs 31 Oct 2004 04:25:57 -0000 1.23 --- Configuration.cs 4 Dec 2004 22:41:18 -0000 1.24 *************** *** 1,5 **** using System; using System.Collections; - using System.Collections.Specialized; using System.IO; using System.Reflection; --- 1,4 ---- *************** *** 199,203 **** { log.Error("Could not compile the mapping document", me); ! throw me; } } --- 198,202 ---- { log.Error("Could not compile the mapping document", me); ! throw; } } *************** *** 226,230 **** catch (MappingException me) { ! throw me; } catch (Exception e) --- 225,229 ---- catch (MappingException me) { ! throw; } catch (Exception e) *************** *** 335,339 **** catch (MappingException me) { ! throw me; } catch (Exception e) --- 334,338 ---- catch (MappingException me) { ! throw; } catch (Exception e) |