diff options
Diffstat (limited to 'cpp/src/IcePatch/Client.cpp')
-rw-r--r-- | cpp/src/IcePatch/Client.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/cpp/src/IcePatch/Client.cpp b/cpp/src/IcePatch/Client.cpp index 5fdda3c010d..f4541e52a6c 100644 --- a/cpp/src/IcePatch/Client.cpp +++ b/cpp/src/IcePatch/Client.cpp @@ -26,7 +26,6 @@ public: void usage(); virtual int run(int, char*[]); void printNodeDescSeq(const NodeDescSeq&, const string&); - void getFile(const FilePrx&); }; }; @@ -259,20 +258,6 @@ IcePatch::Client::printNodeDescSeq(const NodeDescSeq& nodeDescSeq, const string& } } -void -IcePatch::Client::getFile(const FilePrx& file) -{ - ByteSeq bytes; - Int pos = 0; - - do - { - bytes = file->getBytesBZ2(pos, 256 * 1024); - pos += bytes.size(); - } - while (!bytes.empty()); -} - int main(int argc, char* argv[]) { |