diff --git a/src/com/badlogic/androidgames/BitmapTest.java b/src/com/badlogic/androidgames/BitmapTest.java index c047dc3..07edafa 100644 --- a/src/com/badlogic/androidgames/BitmapTest.java +++ b/src/com/badlogic/androidgames/BitmapTest.java @@ -16,12 +16,14 @@ import android.view.Window; import android.view.WindowManager; +// Dummy public class BitmapTest extends Activity { class RenderView extends View { - Bitmap bob565; - Bitmap bob4444; - Rect dst = new Rect(); + final Bitmap bob565; + final Bitmap bob4444; + final Rect dst = new Rect(); + // Dummy public RenderView(Context context) { super(context); @@ -43,9 +45,9 @@ public RenderView(Context context) { "bobargb8888.png format: " + bob4444.getConfig()); } catch (IOException e) { - // silently ignored, bad coder monkey, baaad! + // Silently ignored, bad coder monkey, baaad! } finally { - // we should really close our input streams here. + // We should really close our input streams here. } } diff --git a/src/com/badlogic/androidgames/FontTest.java b/src/com/badlogic/androidgames/FontTest.java index 2a29747..15b2278 100644 --- a/src/com/badlogic/androidgames/FontTest.java +++ b/src/com/badlogic/androidgames/FontTest.java @@ -12,6 +12,7 @@ import android.view.Window; import android.view.WindowManager; +// Comment public class FontTest extends Activity { class RenderView extends View { Paint paint;