summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ProxyFactory.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-10-17 20:06:50 +0000
committerMarc Laukien <marc@zeroc.com>2001-10-17 20:06:50 +0000
commit0eb4ce2d5b4dd8bf56b1cc7bd49934a66170fc21 (patch)
treebe91e2bdccd85ba4102420b93df1fd921fd6f4c8 /cpp/src/Ice/ProxyFactory.cpp
parentfixes (diff)
downloadice-0eb4ce2d5b4dd8bf56b1cc7bd49934a66170fc21.tar.bz2
ice-0eb4ce2d5b4dd8bf56b1cc7bd49934a66170fc21.tar.xz
ice-0eb4ce2d5b4dd8bf56b1cc7bd49934a66170fc21.zip
fixes
Diffstat (limited to 'cpp/src/Ice/ProxyFactory.cpp')
-rw-r--r--cpp/src/Ice/ProxyFactory.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/cpp/src/Ice/ProxyFactory.cpp b/cpp/src/Ice/ProxyFactory.cpp
index 592545ddad7..35751e9865b 100644
--- a/cpp/src/Ice/ProxyFactory.cpp
+++ b/cpp/src/Ice/ProxyFactory.cpp
@@ -43,12 +43,10 @@ IceInternal::ProxyFactory::streamToProxy(BasicStream* s)
if (identity.empty())
{
- cout << "read empty identity" << endl;
return 0;
}
else
{
- cout << "read identity " << identity << endl;
ReferencePtr reference = new Reference(identity, s);
return referenceToProxy(reference);
}
@@ -67,13 +65,11 @@ IceInternal::ProxyFactory::proxyToStream(const ObjectPrx& proxy, BasicStream* s)
{
if (proxy)
{
- cout << "wrote identity " << proxy->__reference()->identity << endl;
s->write(proxy->__reference()->identity);
proxy->__reference()->streamWrite(s);
}
else
{
- cout << "wrote empty identity" << endl;
s->write("");
}
}