eolian-js: Remove replacing commas by underscores in events.

This was done before when the identifier was used to generate
methods. Now using strings to denote events this is not needed
anymore.
This commit is contained in:
Felipe Magno de Almeida 2016-02-03 21:06:17 -02:00
parent 8ff1194d32
commit c9bc6fb4cd
1 changed files with 0 additions and 1 deletions

View File

@ -928,7 +928,6 @@ int main(int argc, char** argv)
, last; first != last; ++first)
{
std::string event_name (::eolian_event_name_get(&*first));
std::replace(event_name.begin(), event_name.end(), ',', '_');
if (!eolian_event_is_beta(&*first) &&
event_member_names.find(event_name) == event_member_names.end())