diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-06-27 10:31:41 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-06-27 10:31:41 +0200 |
commit | a4f93259dc3494d98addf38e69b87eb557d432b3 (patch) | |
tree | d2b78bb5cea24e33dc1b46be22dba6167e96c9ed /cpp/src/slice2java/Gen.h | |
parent | Fix for ICE-5515 (ice_staticId on proxies) in Java, C#, Python, Ruby and PHP ... (diff) | |
download | ice-a4f93259dc3494d98addf38e69b87eb557d432b3.tar.bz2 ice-a4f93259dc3494d98addf38e69b87eb557d432b3.tar.xz ice-a4f93259dc3494d98addf38e69b87eb557d432b3.zip |
Better collocation optimization, fix for ICE-5489, ICE-5484
Diffstat (limited to 'cpp/src/slice2java/Gen.h')
-rw-r--r-- | cpp/src/slice2java/Gen.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/cpp/src/slice2java/Gen.h b/cpp/src/slice2java/Gen.h index 1325db537a6..837765eb4c5 100644 --- a/cpp/src/slice2java/Gen.h +++ b/cpp/src/slice2java/Gen.h @@ -68,12 +68,6 @@ protected: void writeThrowsClause(const std::string&, const ExceptionList&); // - // Generate a throws clause for delegate operations containing only - // non-local exceptions. - // - void writeDelegateThrowsClause(const std::string&, const ExceptionList&); - - // // Generate code to compute a hash code for a type. // void writeHashCode(::IceUtilInternal::Output&, const TypePtr&, const std::string&, int&, @@ -260,41 +254,6 @@ private: virtual void visitOperation(const OperationPtr&); }; - class DelegateVisitor : public JavaVisitor - { - public: - - DelegateVisitor(const std::string&); - - virtual bool visitClassDefStart(const ClassDefPtr&); - }; - - class DelegateMVisitor : public JavaVisitor - { - public: - - DelegateMVisitor(const std::string&); - - virtual bool visitClassDefStart(const ClassDefPtr&); - - private: - - void writeOperation(const ClassDefPtr&, const std::string&, const OperationPtr&, bool); - }; - - class DelegateDVisitor : public JavaVisitor - { - public: - - DelegateDVisitor(const std::string&); - - virtual bool visitClassDefStart(const ClassDefPtr&); - - private: - - void writeOperation(const ClassDefPtr&, const std::string&, const OperationPtr&, bool); - }; - class DispatcherVisitor : public JavaVisitor { public: |