summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/src/com/android/systemui/egg/MLand.java
diff options
context:
space:
mode:
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/egg/MLand.java')
-rw-r--r--packages/SystemUI/src/com/android/systemui/egg/MLand.java13
1 files changed, 2 insertions, 11 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/egg/MLand.java b/packages/SystemUI/src/com/android/systemui/egg/MLand.java
index 1b22e04..b84777b 100644
--- a/packages/SystemUI/src/com/android/systemui/egg/MLand.java
+++ b/packages/SystemUI/src/com/android/systemui/egg/MLand.java
@@ -1,6 +1,5 @@
/*
* Copyright (C) 2015 The Android Open Source Project
- * Copyright (C) 2014-2015 The CyanogenMod Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -211,8 +210,6 @@ public class MLand extends FrameLayout {
// we assume everything will be laid out left|top
setLayoutDirection(LAYOUT_DIRECTION_LTR);
- Player.eggPlayer = getEggPlayer();
-
setupPlayers(DEFAULT_PLAYERS);
MetricsLogger.count(getContext(), "egg_mland_create", 1);
@@ -1010,7 +1007,7 @@ public class MLand extends FrameLayout {
public void step(long t_ms, long dt_ms, float t, float dt);
}
- protected static class Player extends ImageView implements GameView {
+ private static class Player extends ImageView implements GameView {
public float dv;
public int color;
private MLand mLand;
@@ -1020,8 +1017,6 @@ public class MLand extends FrameLayout {
private int mScore;
private TextView mScoreField;
- protected static int eggPlayer;
-
private final int[] sColors = new int[] {
//0xFF78C557,
0xFFDB4437,
@@ -1093,7 +1088,7 @@ public class MLand extends FrameLayout {
public Player(Context context) {
super(context);
- setBackgroundResource(eggPlayer);
+ setBackgroundResource(R.drawable.android);
getBackground().setTintMode(PorterDuff.Mode.SRC_ATOP);
color = sColors[(sNextColor++%sColors.length)];
getBackground().setTint(color);
@@ -1443,8 +1438,4 @@ public class MLand extends FrameLayout {
v = z = 0;
}
}
-
- protected int getEggPlayer() {
- return R.drawable.android;
- }
}