Skip to content
This repository has been archived by the owner on Jul 3, 2019. It is now read-only.

Commit

Permalink
Reverting back bad-parameter-name unfix.
Browse files Browse the repository at this point in the history
  • Loading branch information
yurydelendik committed Mar 7, 2014
1 parent 548d8f5 commit 5edd95d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/avm2/parser.ts
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ module Shumway.AVM2.ABC {
// NOTE: We can't get the parameter name as described in the spec because // NOTE: We can't get the parameter name as described in the spec because
// some SWFs have invalid parameter names. Tamarin doesn't parse parameter // some SWFs have invalid parameter names. Tamarin doesn't parse parameter
// names correctly, so we must follow that same behaviour. // names correctly, so we must follow that same behaviour.
if (true) { if (false) {
this.parameters[i].name = constantPool.strings[stream.readU30()]; this.parameters[i].name = constantPool.strings[stream.readU30()];
} else { } else {
stream.readU30(); stream.readU30();
Expand Down

0 comments on commit 5edd95d

Please sign in to comment.