Skip to content

Commit

Permalink
Merge pull request #47 from seancorfield/master
Browse files Browse the repository at this point in the history
Bump version to 0.4.8 for #46 and fix formatting of that PR.
  • Loading branch information
seancorfield committed Aug 13, 2013
2 parents 9d697a2 + 3454409 commit 4ce3b28
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ioc.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,10 @@ component {
if ( !structKeyExists( variables.settersInfo, beanName ) ) {
variables.settersInfo[ beanName ] = findSetters( bean, info.metadata );
}
var setterMeta = {setters=variables.settersInfo[ beanName ].setters, bean=bean};
var setterMeta = {
setters = variables.settersInfo[ beanName ].setters,
bean = bean
};
accumulator.injection[ beanName ] = setterMeta;
for ( var property in setterMeta.setters ) {
resolveBeanCreate( property, accumulator );
Expand Down Expand Up @@ -602,7 +605,7 @@ component {
throw 'singletonPattern and transientPattern are mutually exclusive';
}

variables.config.version = '0.4.7';
variables.config.version = '0.4.8';
}


Expand Down

0 comments on commit 4ce3b28

Please sign in to comment.