From 1d8d2fa9c90f5da232d843c09a3bafde598a6603 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adonais=20Romero=20Gonz=C3=A1lez?= Date: Wed, 12 Oct 2016 21:46:51 -0500 Subject: [PATCH] Implicit base() --- osu.Game/Graphics/UserInterface/AlternativeComboCounter.cs | 2 +- osu.Game/Graphics/UserInterface/CatchComboCounter.cs | 2 +- osu.Game/Graphics/UserInterface/NumericRollingCounter.cs | 2 +- osu.Game/Graphics/UserInterface/RollingCounter.cs | 2 +- osu.Game/Graphics/UserInterface/ScoreCounter.cs | 2 +- osu.Game/Graphics/UserInterface/StandardComboCounter.cs | 2 +- osu.Game/Graphics/UserInterface/StarCounter.cs | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/osu.Game/Graphics/UserInterface/AlternativeComboCounter.cs b/osu.Game/Graphics/UserInterface/AlternativeComboCounter.cs index 13dc146a55..2fa82d9db3 100644 --- a/osu.Game/Graphics/UserInterface/AlternativeComboCounter.cs +++ b/osu.Game/Graphics/UserInterface/AlternativeComboCounter.cs @@ -25,7 +25,7 @@ namespace osu.Game.Graphics.UserInterface public EasingTypes TintEasing = EasingTypes.None; public bool CanAnimateWhenBackwards = false; - public AlternativeComboCounter() : base() + public AlternativeComboCounter() { IsRollingContinuous = false; } diff --git a/osu.Game/Graphics/UserInterface/CatchComboCounter.cs b/osu.Game/Graphics/UserInterface/CatchComboCounter.cs index 6f85df9c75..8fe7ba3404 100644 --- a/osu.Game/Graphics/UserInterface/CatchComboCounter.cs +++ b/osu.Game/Graphics/UserInterface/CatchComboCounter.cs @@ -15,7 +15,7 @@ namespace osu.Game.Graphics.UserInterface /// public class CatchComboCounter : StandardComboCounter { - public CatchComboCounter() : base() + public CatchComboCounter() { CanPopOutWhenBackwards = true; } diff --git a/osu.Game/Graphics/UserInterface/NumericRollingCounter.cs b/osu.Game/Graphics/UserInterface/NumericRollingCounter.cs index aa9aee3919..03b9804e01 100644 --- a/osu.Game/Graphics/UserInterface/NumericRollingCounter.cs +++ b/osu.Game/Graphics/UserInterface/NumericRollingCounter.cs @@ -32,7 +32,7 @@ namespace osu.Game.Graphics.UserInterface } } - protected NumericRollingCounter() : base() + protected NumericRollingCounter() { Children = new Drawable[] { diff --git a/osu.Game/Graphics/UserInterface/RollingCounter.cs b/osu.Game/Graphics/UserInterface/RollingCounter.cs index 18826506ca..251ea7dd92 100644 --- a/osu.Game/Graphics/UserInterface/RollingCounter.cs +++ b/osu.Game/Graphics/UserInterface/RollingCounter.cs @@ -104,7 +104,7 @@ namespace osu.Game.Graphics.UserInterface } } - protected RollingCounter() : base() + protected RollingCounter() { Debug.Assert( transformType.IsSubclassOf(typeof(Transform)) || transformType == typeof(Transform), diff --git a/osu.Game/Graphics/UserInterface/ScoreCounter.cs b/osu.Game/Graphics/UserInterface/ScoreCounter.cs index 1fce361a0e..faba550bb0 100644 --- a/osu.Game/Graphics/UserInterface/ScoreCounter.cs +++ b/osu.Game/Graphics/UserInterface/ScoreCounter.cs @@ -25,7 +25,7 @@ namespace osu.Game.Graphics.UserInterface /// Displays score. /// /// How many leading zeroes the counter will have. - public ScoreCounter(uint leading = 0) : base() + public ScoreCounter(uint leading = 0) { countSpriteText.FixedWidth = true; LeadingZeroes = leading; diff --git a/osu.Game/Graphics/UserInterface/StandardComboCounter.cs b/osu.Game/Graphics/UserInterface/StandardComboCounter.cs index 8632535728..838db7525f 100644 --- a/osu.Game/Graphics/UserInterface/StandardComboCounter.cs +++ b/osu.Game/Graphics/UserInterface/StandardComboCounter.cs @@ -43,7 +43,7 @@ namespace osu.Game.Graphics.UserInterface } } - public StandardComboCounter() : base() + public StandardComboCounter() { IsRollingContinuous = false; diff --git a/osu.Game/Graphics/UserInterface/StarCounter.cs b/osu.Game/Graphics/UserInterface/StarCounter.cs index 9335e31142..2a9eb47031 100644 --- a/osu.Game/Graphics/UserInterface/StarCounter.cs +++ b/osu.Game/Graphics/UserInterface/StarCounter.cs @@ -48,7 +48,7 @@ namespace osu.Game.Graphics.UserInterface /// Shows a float count as stars. Used as star difficulty display. /// /// Maximum amount of stars to display. - public StarCounter(int stars = 10) : base() + public StarCounter(int stars = 10) { IsRollingProportional = true; RollingDuration = 150;