android/Loader: fix indent
This commit is contained in:
parent
1a619522ee
commit
604c9dacdb
|
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue