From: Michael D. <mik...@us...> - 2005-02-14 03:37:36
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19108/NHibernate/Mapping Modified Files: Bag.cs IdentifierBag.cs List.cs Map.cs Set.cs Log Message: replaced namespace and class aliasing with just using the fully qualified name. Index: Bag.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping/Bag.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Bag.cs 31 Dec 2004 21:26:26 -0000 1.5 --- Bag.cs 14 Feb 2005 03:37:27 -0000 1.6 *************** *** 1,4 **** using NHibernate.Type; - using NHibernateBag=NHibernate.Collection.Bag; namespace NHibernate.Mapping --- 1,3 ---- *************** *** 26,30 **** public override System.Type WrapperClass { ! get { return typeof( NHibernateBag ); } } --- 25,29 ---- public override System.Type WrapperClass { ! get { return typeof( NHibernate.Collection.Bag ); } } Index: List.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping/List.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** List.cs 31 Dec 2004 21:27:30 -0000 1.7 --- List.cs 14 Feb 2005 03:37:27 -0000 1.8 *************** *** 1,5 **** using NHibernate.Type; - using Collection_List = NHibernate.Collection.List; - using NHCollection = NHibernate.Collection; namespace NHibernate.Mapping --- 1,3 ---- *************** *** 27,31 **** public override System.Type WrapperClass { ! get { return typeof( Collection_List ); } } --- 25,29 ---- public override System.Type WrapperClass { ! get { return typeof( NHibernate.Collection.List ); } } Index: Map.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping/Map.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Map.cs 31 Dec 2004 21:27:30 -0000 1.6 --- Map.cs 14 Feb 2005 03:37:27 -0000 1.7 *************** *** 1,6 **** - using NHibernate.Collection; using NHibernate.Type; - using Collection_Map = NHibernate.Collection.Map; - using NHCollection = NHibernate.Collection; namespace NHibernate.Mapping --- 1,3 ---- *************** *** 34,39 **** { return IsSorted ? ! typeof( SortedMap ) : ! typeof( Collection_Map ); } } --- 31,36 ---- { return IsSorted ? ! typeof( NHibernate.Collection.SortedMap ) : ! typeof( NHibernate.Collection.Map ); } } Index: Set.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping/Set.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Set.cs 31 Dec 2004 21:27:54 -0000 1.6 --- Set.cs 14 Feb 2005 03:37:27 -0000 1.7 *************** *** 1,6 **** - using NHibernate.Collection; using NHibernate.Type; - using Collection_Set = NHibernate.Collection.Set; - using NCollection = NHibernate.Collection; namespace NHibernate.Mapping --- 1,3 ---- *************** *** 50,55 **** { return IsSorted ? ! typeof( SortedSet ) : ! typeof( Collection_Set ); } } --- 47,52 ---- { return IsSorted ? ! typeof( NHibernate.Collection.SortedSet ) : ! typeof( NHibernate.Collection.Set ); } } Index: IdentifierBag.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping/IdentifierBag.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IdentifierBag.cs 31 Dec 2004 21:26:49 -0000 1.3 --- IdentifierBag.cs 14 Feb 2005 03:37:27 -0000 1.4 *************** *** 1,5 **** using NHibernate.Type; - using Collection_IdentifierBag = NHibernate.Collection.IdentifierBag; - using NHCollection = NHibernate.Collection; namespace NHibernate.Mapping --- 1,3 ---- *************** *** 28,32 **** public override System.Type WrapperClass { ! get { return typeof( Collection_IdentifierBag ); } } --- 26,30 ---- public override System.Type WrapperClass { ! get { return typeof( NHibernate.Collection.IdentifierBag ); } } |