Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Commit

Permalink
fix merge conflict for Bill/Iain's patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Isao Yagi committed Jul 18, 2012
1 parent 069d485 commit 7adda35
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/lib/app/autoload/resource-store-adapter.common.js
Expand Up @@ -85,7 +85,7 @@ YUI.add('mojito-resource-store-adapter', function(Y, NAME) {
// Here we get either the a spec or a type
source.func(env, source.name, context, function(err, data) {
if (err) {
callback(err);
callback(err, {});
return;
}

Expand All @@ -104,8 +104,8 @@ YUI.add('mojito-resource-store-adapter', function(Y, NAME) {
if (!my.validate(base)) {
callback({
message: 'Instance was not valid.',
stack: JSON.stringify(base, null, 4)
});
stack: Y.JSON.stringify(base, null, 4)
}, {});
return;
}

Expand Down

0 comments on commit 7adda35

Please sign in to comment.