plectrum

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 0b558ca6e233601f43abdd16228a6a915765e9ab
parent ddc3f207dad84bd5cbfd0cee951b657b2714923a
Author: gstraube <gstraube@mailbox.org>
Date:   Sun, 20 Aug 2017 18:47:04 +0200

Remove redundant cast

Diffstat:
Mapp/src/main/java/com/github/cythara/MainActivity.java | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/src/main/java/com/github/cythara/MainActivity.java b/app/src/main/java/com/github/cythara/MainActivity.java @@ -28,7 +28,7 @@ public class MainActivity extends AppCompatActivity implements ListenerFragment. @Override public void onProgressUpdate(PitchDifference pitchDifference) { - TunerView tunerView = (TunerView) this.findViewById(R.id.pitch); + TunerView tunerView = this.findViewById(R.id.pitch); tunerView.setPitchDifference(pitchDifference); tunerView.invalidate();