summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/servantLocator/ServerAMD.cpp
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2007-02-01 17:09:49 +0000
committerBernard Normier <bernard@zeroc.com>2007-02-01 17:09:49 +0000
commitabada90e3f84dc703b8ddc9efcbed8a946fadead (patch)
tree2c6f9dccd510ea97cb927a7bd635422efaae547a /cpp/test/Ice/servantLocator/ServerAMD.cpp
parentremoving trace message (diff)
downloadice-abada90e3f84dc703b8ddc9efcbed8a946fadead.tar.bz2
ice-abada90e3f84dc703b8ddc9efcbed8a946fadead.tar.xz
ice-abada90e3f84dc703b8ddc9efcbed8a946fadead.zip
Expanded tabs into spaces
Diffstat (limited to 'cpp/test/Ice/servantLocator/ServerAMD.cpp')
-rw-r--r--cpp/test/Ice/servantLocator/ServerAMD.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/test/Ice/servantLocator/ServerAMD.cpp b/cpp/test/Ice/servantLocator/ServerAMD.cpp
index 59ae7efe8dd..470a67c51c7 100644
--- a/cpp/test/Ice/servantLocator/ServerAMD.cpp
+++ b/cpp/test/Ice/servantLocator/ServerAMD.cpp
@@ -28,22 +28,22 @@ protected:
virtual Ice::ObjectPtr
newServantAndCookie(Ice::LocalObjectPtr& cookie) const
{
- cookie = new CookieI();
- return new TestAMDI();
+ cookie = new CookieI();
+ return new TestAMDI();
}
virtual void
checkCookie(const Ice::LocalObjectPtr& cookie) const
{
- Test::CookiePtr co = Test::CookiePtr::dynamicCast(cookie);
- test(co);
- test(co->message() == "blahblah");
+ Test::CookiePtr co = Test::CookiePtr::dynamicCast(cookie);
+ test(co);
+ test(co->message() == "blahblah");
}
virtual void
throwTestIntfUserException() const
{
- throw Test::TestIntfUserException();
+ throw Test::TestIntfUserException();
}
};