Skip to content

Commit 86588aa

Browse files
authored
Merge pull request #201 from orbitjs/fix-array-proxy
Fix ReadOnlyArrayProxy for octane
2 parents 97a6081 + 70823ac commit 86588aa

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

addon/-private/system/read-only-array-proxy.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { readOnly } from '@ember/object/computed';
21
import { computed } from '@ember/object';
32
import ArrayProxy from '@ember/array/proxy';
43

@@ -22,8 +21,6 @@ export default ArrayProxy.extend({
2221
unshiftObject: notSupported,
2322
unshiftObjects: notSupported,
2423

25-
length: readOnly('content.length'),
26-
2724
init() {
2825
this._super();
2926
Object.defineProperty(this, Symbol.iterator, {

0 commit comments

Comments
 (0)