From c43e62a16abc058e368f32f8eccdeacd4e742602 Mon Sep 17 00:00:00 2001 From: ed Date: Fri, 26 Oct 2018 14:21:17 +0100 Subject: [PATCH] Whitespace --- .../native/juce_linux_Midi.cpp | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/modules/juce_audio_devices/native/juce_linux_Midi.cpp b/modules/juce_audio_devices/native/juce_linux_Midi.cpp index 74fb057464..8fa26434fd 100644 --- a/modules/juce_audio_devices/native/juce_linux_Midi.cpp +++ b/modules/juce_audio_devices/native/juce_linux_Midi.cpp @@ -38,7 +38,7 @@ public: jassert (instance == nullptr); snd_seq_open (&handle, "default", SND_SEQ_OPEN_DUPLEX, 0); - + if (handle != nullptr) { snd_seq_nonblock (handle, SND_SEQ_NONBLOCK); @@ -62,18 +62,18 @@ public: if (inputThread) inputThread->stopThread (3000); - } - - static String getAlsaMidiName() - { - #ifdef JUCE_ALSA_MIDI_NAME - return JUCE_ALSA_MIDI_NAME; - #else - if (auto* app = JUCEApplicationBase::getInstance()) - return app->getApplicationName(); - - return "JUCE"; - #endif + } + + static String getAlsaMidiName() + { + #ifdef JUCE_ALSA_MIDI_NAME + return JUCE_ALSA_MIDI_NAME; + #else + if (auto* app = JUCEApplicationBase::getInstance()) + return app->getApplicationName(); + + return "JUCE"; + #endif } using Ptr = ReferenceCountedObjectPtr;