android/Loader: fix indent

This commit is contained in:
Max Kellermann 2014-07-30 09:57:40 +02:00
parent 1a619522ee
commit 604c9dacdb
1 changed files with 12 additions and 12 deletions

View File

@ -22,18 +22,18 @@ package org.musicpd;
import android.util.Log;
public class Loader {
private static final String TAG = "MPD";
private static final String TAG = "MPD";
public static boolean loaded = false;
public static String error;
public static boolean loaded = false;
public static String error;
static {
try {
System.loadLibrary("mpd");
loaded = true;
} catch (UnsatisfiedLinkError e) {
Log.e(TAG, e.getMessage());
error = e.getMessage();
}
}
static {
try {
System.loadLibrary("mpd");
loaded = true;
} catch (UnsatisfiedLinkError e) {
Log.e(TAG, e.getMessage());
error = e.getMessage();
}
}
}