Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

Commit

Permalink
Remove trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheesebaron committed Oct 3, 2018
1 parent 8b199c5 commit 85299dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Xamarin.Essentials/Battery/Battery.shared.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ internal BatteryChangedEventArgs(double level, BatteryState state, BatteryPowerS

public BatteryPowerSource PowerSource { get; }

public override string ToString() =>
public override string ToString() =>
$"ChargeLevel: {ChargeLevel}, State: {State}, PowerSource: {PowerSource}";
}
}
2 changes: 1 addition & 1 deletion Xamarin.Essentials/Compass/Compass.shared.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public bool Equals(CompassData other) =>
public override int GetHashCode() =>
HeadingMagneticNorth.GetHashCode();

public override string ToString() =>
public override string ToString() =>
$"HeadingMagneticNorth: {HeadingMagneticNorth}";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public GeolocationRequest(GeolocationAccuracy accuracy, TimeSpan timeout)

public GeolocationAccuracy DesiredAccuracy { get; set; }

public override string ToString() =>
public override string ToString() =>
$"DesiredAccuracy: {DesiredAccuracy}, Timeout: {Timeout}";
}
}

0 comments on commit 85299dd

Please sign in to comment.