[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:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user