diff options
author | Jose <jose@zeroc.com> | 2017-04-26 08:25:05 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-04-26 08:25:05 +0200 |
commit | 67e470b61cce48821ce7e7701bf1ca919cb89614 (patch) | |
tree | 7e6a3e8ce85f6d2b50d620e76a9f98e2482af8ac /cpp/src/slice2js/Gen.cpp | |
parent | Fix (ICE-7805) - Avoid creating functions in a loop in JavaScript (diff) | |
download | ice-67e470b61cce48821ce7e7701bf1ca919cb89614.tar.bz2 ice-67e470b61cce48821ce7e7701bf1ca919cb89614.tar.xz ice-67e470b61cce48821ce7e7701bf1ca919cb89614.zip |
Fix (ICE-7790) - ice_id missing in JS
Diffstat (limited to 'cpp/src/slice2js/Gen.cpp')
-rw-r--r-- | cpp/src/slice2js/Gen.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cpp/src/slice2js/Gen.cpp b/cpp/src/slice2js/Gen.cpp index 7a64790d4df..fe065f66f36 100644 --- a/cpp/src/slice2js/Gen.cpp +++ b/cpp/src/slice2js/Gen.cpp @@ -1512,12 +1512,6 @@ Slice::Gen::TypesVisitor::visitExceptionStart(const ExceptionPtr& p) _out << nl << "return \"" << p->scoped() << "\";"; _out << eb; - _out << sp; - _out << nl << "ice_name()"; - _out << sb; - _out << nl << "return \"" << p->scoped().substr(2) << "\";"; - _out << eb; - // TODO: equals? if(!p->isLocal()) |