Skip to content

Commit

Permalink
Merge pull request #109 from stingerlabs/ember-3.15
Browse files Browse the repository at this point in the history
fix deprecation
  • Loading branch information
jeffhertzler committed Mar 23, 2021
2 parents a9113f7 + d6681db commit 0b94cd9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions dist/ember-graph.js
Expand Up @@ -6283,9 +6283,9 @@ define('ember-graph/store/record_request_cache', ['exports', 'ember'], function

cache: null,

initializeCache: (function () {
initializeCache: _ember.default.on('init', function () {
this.set('cache', _ember.default.Object.create());
}).on('init'),
}),

_getAndCreateTypeCache: function (typeKey) {
if (!this.get('cache.' + typeKey)) {
Expand Down
2 changes: 1 addition & 1 deletion dist/ember-graph.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/ember-graph.prod.js
Expand Up @@ -6265,9 +6265,9 @@ define('ember-graph/store/record_request_cache', ['exports', 'ember'], function

cache: null,

initializeCache: (function () {
initializeCache: _ember.default.on('init', function () {
this.set('cache', _ember.default.Object.create());
}).on('init'),
}),

_getAndCreateTypeCache: function (typeKey) {
if (!this.get('cache.' + typeKey)) {
Expand Down
4 changes: 2 additions & 2 deletions src/store/record_request_cache.js
Expand Up @@ -4,9 +4,9 @@ export default Ember.Object.extend({

cache: null,

initializeCache: function() {
initializeCache: Ember.on('init', function() {
this.set('cache', Ember.Object.create());
}.on('init'),
}),

_getAndCreateTypeCache(typeKey) {
if (!this.get('cache.' + typeKey)) {
Expand Down

0 comments on commit 0b94cd9

Please sign in to comment.