Remove unnecessary cast

This commit is contained in:
Anders Hejlsberg
2016-03-29 19:58:43 -07:00
parent 424074ba6b
commit c6f4de3607
+1 -1
View File
@@ -149,7 +149,7 @@ namespace Playback {
recordLog = createEmptyLog();
if (typeof underlying.args !== "function") {
recordLog.arguments = <string[]>underlying.args;
recordLog.arguments = underlying.args;
}
};