| Index: runtime/lib/byte_array.dart
|
| diff --git a/runtime/lib/byte_array.dart b/runtime/lib/byte_array.dart
|
| index 6d7b2e7798109a9fe383009dc4ddd4c373368c36..0f97c3d20814c70f92ab99fbeb85e85707ee37ae 100644
|
| --- a/runtime/lib/byte_array.dart
|
| +++ b/runtime/lib/byte_array.dart
|
| @@ -206,10 +206,6 @@ abstract class _ByteArrayBase {
|
| "Cannot remove from a non-extendable array");
|
| }
|
|
|
| - get first {
|
| - return this[0];
|
| - }
|
| -
|
| get last {
|
| return this[length - 1];
|
| }
|
| @@ -1688,10 +1684,6 @@ class _ByteArrayViewBase {
|
| "Cannot remove from a non-extendable array");
|
| }
|
|
|
| - get first {
|
| - return this[0];
|
| - }
|
| -
|
| get last {
|
| return this[length - 1];
|
| }
|
|
|