From 6d2b39255f91935715252047af5d423c619206f4 Mon Sep 17 00:00:00 2001 From: Markus Ewald Date: Wed, 8 Apr 2009 19:28:31 +0000 Subject: [PATCH] Updated code to match current coding guidelines git-svn-id: file:///srv/devel/repo-conversion/nusu@128 d2e56fa2-650e-0410-a79f-9358c0239efd --- Source/WeakReference.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Source/WeakReference.cs b/Source/WeakReference.cs index 271e92d..095095c 100644 --- a/Source/WeakReference.cs +++ b/Source/WeakReference.cs @@ -37,8 +37,8 @@ namespace Nuclex.Support { /// the specified object. /// /// The object to track or null. - public WeakReference(ReferencedType target) - : base(target) { } + public WeakReference(ReferencedType target) : + base(target) { } /// /// 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 /// after finalization; if false, the object is only tracked until finalization. /// - public WeakReference(ReferencedType target, bool trackResurrection) - : base(target, trackResurrection) { } + public WeakReference(ReferencedType target, bool trackResurrection) : + base(target, trackResurrection) { } #if !COMPACTFRAMEWORK @@ -69,8 +69,8 @@ namespace Nuclex.Support { /// /// The info parameter is null. /// - protected WeakReference(SerializationInfo info, StreamingContext context) - : base(info, context) { } + protected WeakReference(SerializationInfo info, StreamingContext context) : + base(info, context) { } #endif // !COMPACTFRAMEWORK