From: <fab...@us...> - 2011-06-21 12:35:18
|
Revision: 5966 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5966&view=rev Author: fabiomaulo Date: 2011-06-21 12:35:12 +0000 (Tue, 21 Jun 2011) Log Message: ----------- Apply NH-2774 Modified Paths: -------------- trunk/nhibernate/src/NHibernate/Loader/JoinWalker.cs Modified: trunk/nhibernate/src/NHibernate/Loader/JoinWalker.cs =================================================================== --- trunk/nhibernate/src/NHibernate/Loader/JoinWalker.cs 2011-06-20 12:11:12 UTC (rev 5965) +++ trunk/nhibernate/src/NHibernate/Loader/JoinWalker.cs 2011-06-21 12:35:12 UTC (rev 5966) @@ -19,7 +19,7 @@ private readonly ISet<AssociationKey> visitedAssociationKeys = new HashedSet<AssociationKey>(); private readonly IDictionary<string, IFilter> enabledFilters; private readonly IDictionary<string, IFilter> enabledFiltersForManyToOne; - private readonly Regex aliasRegex = new Regex(@"([\w]+)\.", RegexOptions.IgnoreCase | RegexOptions.Compiled); + private static readonly Regex aliasRegex = new Regex(@"([\w]+)\.", RegexOptions.IgnoreCase | RegexOptions.Compiled); private string[] suffixes; private string[] collectionSuffixes; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |