fixed locking

This commit is contained in:
eeichinger
2008-10-27 18:07:59 +00:00
parent 8c8b8d5c93
commit 23530e9bd2

View File

@@ -67,7 +67,13 @@ namespace Spring.Aop.Target
/// </remarks>
public virtual Type TargetType
{
get { return _target.GetType(); }
get
{
lock(this)
{
return _target.GetType();
}
}
}
/// <summary>