Updated code to match current coding guidelines
git-svn-id: file:///srv/devel/repo-conversion/nusu@128 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
23c1b1587a
commit
6d2b39255f
|
@ -37,8 +37,8 @@ namespace Nuclex.Support {
|
||||||
/// the specified object.
|
/// the specified object.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="target">The object to track or null.</param>
|
/// <param name="target">The object to track or null.</param>
|
||||||
public WeakReference(ReferencedType target)
|
public WeakReference(ReferencedType target) :
|
||||||
: base(target) { }
|
base(target) { }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the WeakReference class, referencing
|
/// Initializes a new instance of the WeakReference class, referencing
|
||||||
|
@ -49,8 +49,8 @@ namespace Nuclex.Support {
|
||||||
/// Indicates when to stop tracking the object. If true, the object is tracked
|
/// Indicates when to stop tracking the object. If true, the object is tracked
|
||||||
/// after finalization; if false, the object is only tracked until finalization.
|
/// after finalization; if false, the object is only tracked until finalization.
|
||||||
/// </param>
|
/// </param>
|
||||||
public WeakReference(ReferencedType target, bool trackResurrection)
|
public WeakReference(ReferencedType target, bool trackResurrection) :
|
||||||
: base(target, trackResurrection) { }
|
base(target, trackResurrection) { }
|
||||||
|
|
||||||
#if !COMPACTFRAMEWORK
|
#if !COMPACTFRAMEWORK
|
||||||
|
|
||||||
|
@ -69,8 +69,8 @@ namespace Nuclex.Support {
|
||||||
/// <exception cref="System.ArgumentNullException">
|
/// <exception cref="System.ArgumentNullException">
|
||||||
/// The info parameter is null.
|
/// The info parameter is null.
|
||||||
/// </exception>
|
/// </exception>
|
||||||
protected WeakReference(SerializationInfo info, StreamingContext context)
|
protected WeakReference(SerializationInfo info, StreamingContext context) :
|
||||||
: base(info, context) { }
|
base(info, context) { }
|
||||||
|
|
||||||
#endif // !COMPACTFRAMEWORK
|
#endif // !COMPACTFRAMEWORK
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user