Index: src/com/example/helloandroid/Game.java
===================================================================
--- src/com/example/helloandroid/Game.java	(revision 5053d901dba69d758c57cb533a762e700f66a613)
+++ src/com/example/helloandroid/Game.java	(revision c27abf40d544cf18ba34f39f43fe995f3d4d1678)
@@ -6,5 +6,4 @@
 import android.view.Menu;
 import android.view.MenuItem;
-import android.view.MotionEvent;
 import android.view.Window;
 import android.widget.TextView;
Index: src/com/example/helloandroid/GameView.java
===================================================================
--- src/com/example/helloandroid/GameView.java	(revision 5053d901dba69d758c57cb533a762e700f66a613)
+++ src/com/example/helloandroid/GameView.java	(revision c27abf40d544cf18ba34f39f43fe995f3d4d1678)
@@ -684,7 +684,4 @@
                 mY = yLowerBound;
 
-                int result = STATE_LOSE;
-                CharSequence message = "";
-                Resources res = mContext.getResources();
                 double speed = Math.sqrt(mDX * mDX + mDY * mDY);
                 boolean onGoal = (mGoalX <= mX - mLanderWidth / 2 && mX
@@ -695,5 +692,4 @@
                 if (onGoal && Math.abs(mHeading - 180) < mGoalAngle
                         && speed > PHYS_SPEED_HYPERSPACE) {
-                    result = STATE_WIN;
                     mWinsInARow++;
                     doStart();
@@ -702,16 +698,5 @@
                     // Oddball case: this case does a return, all other cases
                     // fall through to setMode() below.
-                } else if (!onGoal) {
-                    message = res.getText(R.string.message_off_pad);
-                } else if (!(mHeading <= mGoalAngle || mHeading >= 360 - mGoalAngle)) {
-                    message = res.getText(R.string.message_bad_angle);
-                } else if (speed > mGoalSpeed) {
-                    message = res.getText(R.string.message_too_fast);
-                } else {
-                    result = STATE_WIN;
-                    mWinsInARow++;
-                }
-
-                //setState(result, message);
+                }
             }
         }
Index: src/com/example/helloandroid/Planet.java
===================================================================
--- src/com/example/helloandroid/Planet.java	(revision 5053d901dba69d758c57cb533a762e700f66a613)
+++ src/com/example/helloandroid/Planet.java	(revision c27abf40d544cf18ba34f39f43fe995f3d4d1678)
@@ -39,5 +39,5 @@
 		
 		p.setColor(Color.argb(255, 255, 255, 255));
-		c.drawCircle(size, size, getRadius()+11, p);
+		c.drawCircle(size, size, getRadius()+9, p);
 		
 		p.setColor(Color.argb(255, 100, 100, 100));
@@ -92,8 +92,4 @@
 		
 		int c, prevC = linePaint.getColor();
-		
-		if(selected) {
-			//drawSelectionCircle(canvas);
-		}
 		
 		switch(faction) {
