Skip to content

Commit

Permalink
Remove NAME_KEY usage (#75)
Browse files Browse the repository at this point in the history
Remove custom label to aid Ember Inspector users. We could override
toString as suggested by the deprecation guide, but that introduces
other problems we don't want to manage here.
  • Loading branch information
efx authored and offirgolan committed Feb 27, 2019
1 parent 59a02b5 commit 415d080
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions addon/query-params.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@ import { assign } from '@ember/polyfills';
import { assert } from '@ember/debug';
import { isPresent, isEmpty } from '@ember/utils';
import { setProperties, computed, set, get } from '@ember/object';
import Ember from 'ember';
import { HAS_PARACHUTE, PARACHUTE_META } from './-private/symbols';
import ParachuteMeta from './-private/parachute-meta';
import queryParamsStateFor from './-private/state';

const { NAME_KEY } = Ember;

const { keys } = Object;

Expand Down Expand Up @@ -300,7 +298,6 @@ export default class QueryParams {
}
});

ControllerMixin[NAME_KEY] = 'Parachute';

return ControllerMixin;
}
Expand Down

0 comments on commit 415d080

Please sign in to comment.