Skip to content

Commit

Permalink
refactor: #13 keeping codes clean.
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroxpepe committed Mar 16, 2022
1 parent 22e961a commit 496e558
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion MidiPlayer.Droid/MidiPlayer.Droid.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@
</ItemGroup>
<ItemGroup>
<AndroidEnvironment Include="env.conf" />
<Compile Include="MixingPanel.cs" />
<Compile Include="ListViewAdapter.cs" />
<Compile Include="MainActivity.EventCallback.cs" />
<Compile Include="MainActivity.cs" />
Expand Down
6 changes: 3 additions & 3 deletions MidiPlayer.Droid/MixingPanel.cs → MidiPlayer/Mixer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
using System.ComponentModel;
using System.Linq;

namespace MidiPlayer.Droid {
namespace MidiPlayer {

/// <summary>
/// Mixer object.
/// </summary>
static class Mixer {
public static class Mixer {
#nullable enable

///////////////////////////////////////////////////////////////////////////////////////////////
Expand Down Expand Up @@ -91,7 +91,7 @@ public static Fader GetBy(int index) {
/// <summary>
/// Fader class.
/// </summary>
class Fader {
public class Fader {
#nullable enable

///////////////////////////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 496e558

Please sign in to comment.