Skip to content

Commit

Permalink
ember-metal/instrumentation: Move "return" out of "finally" block
Browse files Browse the repository at this point in the history
  • Loading branch information
Turbo87 committed Jan 3, 2017
1 parent e45d268 commit 4cd16c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ember-metal/lib/instrumentation.js
Expand Up @@ -126,8 +126,8 @@ function withFinalizer(callback, finalizer, payload, binding) {
result = payload;
} finally {
finalizer();
return result;
}
return result;
}

function NOOP() {}
Expand Down

0 comments on commit 4cd16c1

Please sign in to comment.