Skip to content

Commit

Permalink
Merge pull request #3819 from pangratz/remove-duplicate-default-export
Browse files Browse the repository at this point in the history
[CLEANUP] Remove duplicate `default export` in snapshot.js
  • Loading branch information
bmac committed Oct 7, 2015
2 parents bd6760f + 01189e8 commit 3bea220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ember-data/lib/system/snapshot.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var get = Ember.get;
@constructor
@param {DS.Model} internalModel The model to create a snapshot from
*/
export default function Snapshot(internalModel) {
function Snapshot(internalModel) {
this._attributes = new EmptyObject();
this._belongsToRelationships = new EmptyObject();
this._belongsToIds = new EmptyObject();
Expand Down

0 comments on commit 3bea220

Please sign in to comment.