| Index: sky/sdk/example/game/lib/color_secuence.dart
|
| diff --git a/sky/sdk/example/game/lib/color_secuence.dart b/sky/sdk/example/game/lib/color_secuence.dart
|
| index 72e9a4000a185a342885ddef16d457e891e146e5..d270cb8f55591ac57c3aac73449963848723a9fc 100644
|
| --- a/sky/sdk/example/game/lib/color_secuence.dart
|
| +++ b/sky/sdk/example/game/lib/color_secuence.dart
|
| @@ -41,12 +41,6 @@ class ColorSequence {
|
| }
|
| }
|
|
|
| - int _clamp(int val, int min, int max) {
|
| - if (val < min) return min;
|
| - if (val > max) return max;
|
| - return val;
|
| - }
|
| -
|
| Color colorAtPosition(double pos) {
|
| assert(pos >= 0.0 && pos <= 1.0);
|
|
|
|
|