[Framework] Remove errant semicolons

Remove extra semicolons from PartialConstructor to
satisfy JSLint during code style check of command
line build; these were introduced during changes
to PartialConstructor to support property retention,
WTD-572.
This commit is contained in:
Victor Woeltjen
2014-11-20 10:58:23 -08:00
parent 9d84bbca5c
commit 1fb558022c

View File

@@ -40,7 +40,7 @@ define(
) || instance; ) || instance;
return instance; return instance;
}; }
// Copy properties from original constructor // Copy properties from original constructor
Object.keys(Constructor).forEach(function (k) { Object.keys(Constructor).forEach(function (k) {
@@ -48,7 +48,7 @@ define(
}); });
return InnerConstructor; return InnerConstructor;
}; }
return OuterConstructor; return OuterConstructor;
} }