mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 18:12:56 +08:00
A few resharper fixes
This commit is contained in:
parent
7e34b0f08d
commit
89772f4efd
@ -29,8 +29,7 @@ namespace osu.Game.Screens.Edit.Screens.Compose.RadioButtons
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public Action<RadioButton> Selected;
|
public Action<RadioButton> Selected;
|
||||||
|
|
||||||
private Drawable bubble;
|
private readonly Drawable bubble;
|
||||||
|
|
||||||
private readonly RadioButton button;
|
private readonly RadioButton button;
|
||||||
|
|
||||||
public DrawableRadioButton(RadioButton button)
|
public DrawableRadioButton(RadioButton button)
|
||||||
|
@ -17,7 +17,7 @@ namespace osu.Game.Screens.Edit.Screens.Compose.RadioButtons
|
|||||||
get { return items; }
|
get { return items; }
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (items == value)
|
if (ReferenceEquals(items, value))
|
||||||
return;
|
return;
|
||||||
items = value;
|
items = value;
|
||||||
|
|
||||||
|
@ -564,7 +564,6 @@
|
|||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="Rulesets\Edit\Tools\HitObjectCompositionTool.cs" />
|
<Compile Include="Rulesets\Edit\Tools\HitObjectCompositionTool.cs" />
|
||||||
<Compile Include="Rulesets\Edit\Tools\ICompositionTool.cs" />
|
<Compile Include="Rulesets\Edit\Tools\ICompositionTool.cs" />
|
||||||
<Compile Include="Rulesets\Edit\Tools\SelectionTool.cs" />
|
|
||||||
<Compile Include="Rulesets\Edit\HitObjectComposer.cs" />
|
<Compile Include="Rulesets\Edit\HitObjectComposer.cs" />
|
||||||
<Compile Include="Rulesets\Edit\ToolboxGroup.cs" />
|
<Compile Include="Rulesets\Edit\ToolboxGroup.cs" />
|
||||||
<Compile Include="Rulesets\Judgements\DrawableJudgement.cs" />
|
<Compile Include="Rulesets\Judgements\DrawableJudgement.cs" />
|
||||||
|
Loading…
Reference in New Issue
Block a user