small fix

This commit is contained in:
2016-07-31 15:01:24 +02:00
parent c544fc8e3a
commit fe552763fe
2 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ export class Objectmap {
* run function for each item in Objectmap
*/
forEach(functionArg:IObjectmapForEach){
this.objectArray.forEach(functionArg);
return this.objectArray.forEach(functionArg);
}
/**