mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
No this. qualification.
This commit is contained in:
@ -111,6 +111,12 @@ csharp_preserve_single_line_statements = true
|
|||||||
|
|
||||||
#Roslyn language styles
|
#Roslyn language styles
|
||||||
|
|
||||||
|
#Style - this. qualification
|
||||||
|
dotnet_style_qualification_for_field = false:warning
|
||||||
|
dotnet_style_qualification_for_property = false:warning
|
||||||
|
dotnet_style_qualification_for_method = false:warning
|
||||||
|
dotnet_style_qualification_for_event = false:warning
|
||||||
|
|
||||||
#Style - type names
|
#Style - type names
|
||||||
dotnet_style_predefined_type_for_locals_parameters_members = true:silent
|
dotnet_style_predefined_type_for_locals_parameters_members = true:silent
|
||||||
dotnet_style_predefined_type_for_member_access = true:silent
|
dotnet_style_predefined_type_for_member_access = true:silent
|
||||||
|
@ -14,7 +14,7 @@ namespace osu.Game.Beatmaps.ControlPoints
|
|||||||
|
|
||||||
private ControlPointGroup controlPointGroup;
|
private ControlPointGroup controlPointGroup;
|
||||||
|
|
||||||
public void AttachGroup(ControlPointGroup pointGroup) => this.controlPointGroup = pointGroup;
|
public void AttachGroup(ControlPointGroup pointGroup) => controlPointGroup = pointGroup;
|
||||||
|
|
||||||
public int CompareTo(ControlPoint other) => Time.CompareTo(other.Time);
|
public int CompareTo(ControlPoint other) => Time.CompareTo(other.Time);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user