diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-11-27 09:10:12 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-11-27 09:10:12 -0330 |
commit | 6f116d8c6b4654f9cb06bdf40f165ce64bf7dbf8 (patch) | |
tree | a14cf5a11f8e6ff699d0674914cadfa462f58c81 /cpp/src/Ice/StreamI.cpp | |
parent | 4351 - Move _close & close to FileUtil. (diff) | |
download | ice-6f116d8c6b4654f9cb06bdf40f165ce64bf7dbf8.tar.bz2 ice-6f116d8c6b4654f9cb06bdf40f165ce64bf7dbf8.tar.xz ice-6f116d8c6b4654f9cb06bdf40f165ce64bf7dbf8.zip |
Reverted commit for bug 3409 - py/rb sequence checking
Diffstat (limited to 'cpp/src/Ice/StreamI.cpp')
-rw-r--r-- | cpp/src/Ice/StreamI.cpp | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/cpp/src/Ice/StreamI.cpp b/cpp/src/Ice/StreamI.cpp index 8a333dbccc5..0d0a59df206 100644 --- a/cpp/src/Ice/StreamI.cpp +++ b/cpp/src/Ice/StreamI.cpp @@ -322,36 +322,6 @@ Ice::InputStreamI::skipSlice() } void -Ice::InputStreamI::startSeq(int numElements, int minSize) -{ - _is->startSeq(numElements, minSize); -} - -void -Ice::InputStreamI::checkSeq() -{ - _is->checkSeq(); -} - -void -Ice::InputStreamI::checkFixedSeq(int numElements, int minSize) -{ - _is->checkFixedSeq(numElements, minSize); -} - -void -Ice::InputStreamI::endSeq(int sz) -{ - _is->endSeq(sz); -} - -void -Ice::InputStreamI::endElement() -{ - _is->endElement(); -} - -void Ice::InputStreamI::readPendingObjects() { _is->readPendingObjects(); |