summaryrefslogtreecommitdiff
path: root/cpp/test/Glacier2/sessionControl/SessionI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Glacier2/sessionControl/SessionI.cpp')
-rw-r--r--cpp/test/Glacier2/sessionControl/SessionI.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/test/Glacier2/sessionControl/SessionI.cpp b/cpp/test/Glacier2/sessionControl/SessionI.cpp
index 9b88eed6126..b0d14cbb01b 100644
--- a/cpp/test/Glacier2/sessionControl/SessionI.cpp
+++ b/cpp/test/Glacier2/sessionControl/SessionI.cpp
@@ -25,13 +25,13 @@ public:
void
ice_response()
{
- _cb->ice_response();
+ _cb->ice_response();
}
void
ice_exception(const IceUtil::Exception&)
{
- test(false);
+ test(false);
}
private:
@@ -41,15 +41,15 @@ private:
Glacier2::SessionPrx
SessionManagerI::create(const string& userId, const Glacier2::SessionControlPrx& sessionControl,
- const Ice::Current& current)
+ const Ice::Current& current)
{
if(userId == "rejectme")
{
- throw Glacier2::CannotCreateSessionException("");
+ throw Glacier2::CannotCreateSessionException("");
}
if(userId == "localexception")
{
- throw Ice::ObjectNotExistException(__FILE__, __LINE__);
+ throw Ice::ObjectNotExistException(__FILE__, __LINE__);
}
return Glacier2::SessionPrx::uncheckedCast(current.adapter->addWithUUID(new SessionI(sessionControl)));
}