summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/Parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceGrid/Parser.cpp')
-rw-r--r--cpp/src/IceGrid/Parser.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/cpp/src/IceGrid/Parser.cpp b/cpp/src/IceGrid/Parser.cpp
index 4a48c07a0f9..4630a64d351 100644
--- a/cpp/src/IceGrid/Parser.cpp
+++ b/cpp/src/IceGrid/Parser.cpp
@@ -512,16 +512,7 @@ Parser::describeServiceTemplate(const list<string>& args)
out << nl << "parameters = `" << toString(q->second.parameters) << "'";
}
out << nl;
- ServiceDescriptorPtr service = ServiceDescriptorPtr::dynamicCast(q->second.descriptor);
- IceBoxDescriptorPtr iceBox = IceBoxDescriptorPtr::dynamicCast(service);
- if(iceBox)
- {
- IceBoxHelper(iceBox).print(out);
- }
- else
- {
- ServiceHelper(service).print(out);
- }
+ ServiceHelper(ServiceDescriptorPtr::dynamicCast(q->second.descriptor)).print(out);
out << eb;
out << nl;
}