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