diff options
Diffstat (limited to 'cppe/src')
-rw-r--r-- | cppe/src/IceE/BasicStream.cpp | 8 | ||||
-rwxr-xr-x | cppe/src/IceE/LocalException.cpp | 6 |
2 files changed, 1 insertions, 13 deletions
diff --git a/cppe/src/IceE/BasicStream.cpp b/cppe/src/IceE/BasicStream.cpp index 477d7f7acc5..0d361d57645 100644 --- a/cppe/src/IceE/BasicStream.cpp +++ b/cppe/src/IceE/BasicStream.cpp @@ -1333,14 +1333,8 @@ IceInternal::BasicStream::read(ObjectPrx& v) void IceInternal::BasicStream::write(const UserException& v) { - write(v.__usesClasses()); + write(false); v.__write(this); -#ifdef never
- if(v.__usesClasses()) - { - writePendingObjects(); - } -#endif } void diff --git a/cppe/src/IceE/LocalException.cpp b/cppe/src/IceE/LocalException.cpp index d414fa4b88b..2f63d22e5b9 100755 --- a/cppe/src/IceE/LocalException.cpp +++ b/cppe/src/IceE/LocalException.cpp @@ -1796,12 +1796,6 @@ Ice::NegativeSizeException::ice_throw() const throw *this;
}
-bool
-Ice::UserException::__usesClasses() const
-{
- return false;
-}
-
string
Ice::UnknownException::toString() const
{
|