1
0
Fork 0
forked from len0rd/rockbox

A bit of cleanup.

Replace // with /* */ style comments
Cleanup copy&paste from the doc examples.
Don't pretend to handle exception we don't handle actually.
cleanup imports

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27754 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-08-08 16:44:06 +00:00
parent 4aa3d01066
commit 4a3e6dbe8f
5 changed files with 52 additions and 56 deletions

View file

@ -25,7 +25,6 @@ import java.nio.ByteBuffer;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.os.Handler;
import android.util.Log;
import android.view.MotionEvent;
import android.view.View;
@ -68,14 +67,14 @@ public class RockboxFramebuffer extends View
postInvalidate(x, y, x+w, y+h);
}
@SuppressWarnings("unused")
private void LOG(CharSequence text)
{
Log.d("RockboxBootloader", (String) text);
Log.d("Rockbox", (String) text);
}
public boolean onTouchEvent(MotionEvent me)
{
LOG("onTouchEvent");
switch (me.getAction())
{
case MotionEvent.ACTION_CANCEL: