1
0
Fork 0
forked from len0rd/rockbox

Android: Slightly rework logging to logcat by offloading duplicated code to a new helper class.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30161 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2011-07-18 21:26:03 +00:00
parent 33de9cdaef
commit 02b2b285d6
5 changed files with 6 additions and 35 deletions

View file

@ -28,7 +28,6 @@ import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.os.ResultReceiver;
import android.util.Log;
import android.view.Window;
import android.view.WindowManager;
import android.widget.Toast;
@ -129,9 +128,4 @@ public class RockboxActivity extends Activity
super.onDestroy();
setServiceActivity(false);
}
private void LOG(CharSequence text)
{
Log.d("Rockbox", (String) text);
}
}