From 1afd2441c9c4c2fb8ffe4158265628c950b9dc48 Mon Sep 17 00:00:00 2001 From: Sergey Koshcheyev Date: Sat, 8 Sep 2007 18:29:14 +0000 Subject: [PATCH] XML comments SVN: branches/1.2.x@2975 --- src/NHibernate/Cfg/Configuration.cs | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/src/NHibernate/Cfg/Configuration.cs b/src/NHibernate/Cfg/Configuration.cs index 4268143472e..58cfbf071aa 100644 --- a/src/NHibernate/Cfg/Configuration.cs +++ b/src/NHibernate/Cfg/Configuration.cs @@ -591,12 +591,6 @@ public Configuration AddAssembly(string assemblyName) /// /// The assembly. /// This configuration object. - /// - /// This method assumes that the hbm.xml files in the Assembly need to be put - /// in the correct order by NHibernate. See - /// AddAssembly(Assembly assembly, bool skipOrdering) for the impacts and reasons - /// for letting NHibernate order the hbm.xml files. - /// public Configuration AddAssembly(Assembly assembly) { IList resourceNames = GetAllHbmXmlResourceNames(assembly); @@ -623,23 +617,6 @@ private static StringCollection GetAllHbmXmlResourceNames(Assembly assembly) return result; } - /// - /// Adds all of the assembly's embedded resources whose names end with .hbm.xml. - /// - /// The loaded assembly. - /// - /// Ignored since version 1.2.1 - /// - /// This configuration object. - /// - /// - /// The order of hbm.xml files only matters if the attribute "extends" is used. - /// The ordering should only be done when needed because it takes extra time - /// to read the XML files to find out the order the files should be passed to - /// the . If you don't use the "extends" attribute then it is - /// reccommended to call this with skipOrdering=true. - /// - /// [Obsolete("Use AddAssembly(Assembly), since version 1.2.1 resource ordering cannot be skipped.")] public Configuration AddAssembly(Assembly assembly, bool skipOrdering) {