Switch from GPLv2 to GPLv2+
[fw/altos] / altosdroid / src / org / altusmetrum / AltosDroid / GoNoGoLights.java
index 267c90f8e57cc2f0df621f82959e5b9a344a4573..c18d7309a474aef6b63ab56a39595c37f6d92f45 100644 (file)
@@ -3,7 +3,8 @@
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -52,27 +53,14 @@ public class GoNoGoLights {
                missing = m;
                set = true;
                if (missing) {
-                       hide();
                        red.setImageDrawable(dGray);
                        green.setImageDrawable(dGray);
                } else if (state) {
                        red.setImageDrawable(dGray);
                        green.setImageDrawable(dGreen);
-                       show();
                } else {
                        red.setImageDrawable(dRed);
                        green.setImageDrawable(dGray);
-                       show();
                }
        }
-
-       public void show() {
-               red.setVisibility(View.VISIBLE);
-               green.setVisibility(View.VISIBLE);
-       }
-
-       public void hide() {
-               red.setVisibility(View.GONE);
-               green.setVisibility(View.GONE);
-       }
 }