Skip to content

Commit ab91a22

Browse files
authored
remove redundant base calls (#4526)
1 parent cb9ce28 commit ab91a22

File tree

5 files changed

+2
-5
lines changed

5 files changed

+2
-5
lines changed

Source/Csla.Windows/ObjectSaveException.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class ObjectSaveException : Exception
1919
/// <summary>
2020
/// Creates an instance of the object.
2121
/// </summary>
22-
public ObjectSaveException() : base() { }
22+
public ObjectSaveException() { }
2323

2424
/// <summary>
2525
/// Creates an instance of the object.

Source/Csla.Xaml.Shared/PropertyStatus.cs

-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ public class PropertyStatus : ContentControl, INotifyPropertyChanged
5858
/// Creates an instance of the object.
5959
/// </summary>
6060
public PropertyStatus()
61-
: base()
6261
{
6362
BrokenRules = new ObservableCollection<BrokenRule>();
6463
DefaultStyleKey = typeof(PropertyStatus);

Source/Csla/Core/MobileList.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class MobileList<
2828
/// <summary>
2929
/// Creates an instance of the type.
3030
/// </summary>
31-
public MobileList() : base() { }
31+
public MobileList() { }
3232
/// <summary>
3333
/// Creates an instance of the type.
3434
/// </summary>

Source/Csla/Rules/PropertyRule.cs

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ protected virtual string GetMessage()
5353
/// Initializes a new instance of the <see cref="PropertyRule"/> class.
5454
/// </summary>
5555
protected PropertyRule()
56-
: base()
5756
{
5857
CanRunAsAffectedProperty = true;
5958
CanRunOnServer = true;

Source/Csla/Rules/PropertyRuleAsync.cs

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ protected virtual string GetMessage()
5353
/// Initializes a new instance of the <see cref="PropertyRule"/> class.
5454
/// </summary>
5555
protected PropertyRuleAsync()
56-
: base()
5756
{
5857
CanRunAsAffectedProperty = true;
5958
CanRunOnServer = true;

0 commit comments

Comments
 (0)