Commit 604c9dac authored by Max Kellermann's avatar Max Kellermann

android/Loader: fix indent

parent 1a619522
...@@ -22,18 +22,18 @@ package org.musicpd; ...@@ -22,18 +22,18 @@ package org.musicpd;
import android.util.Log; import android.util.Log;
public class Loader { public class Loader {
private static final String TAG = "MPD"; private static final String TAG = "MPD";
public static boolean loaded = false; public static boolean loaded = false;
public static String error; public static String error;
static { static {
try { try {
System.loadLibrary("mpd"); System.loadLibrary("mpd");
loaded = true; loaded = true;
} catch (UnsatisfiedLinkError e) { } catch (UnsatisfiedLinkError e) {
Log.e(TAG, e.getMessage()); Log.e(TAG, e.getMessage());
error = e.getMessage(); error = e.getMessage();
} }
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment