summaryrefslogtreecommitdiff
path: root/csharp/test/TestCommon/TestApp.cs
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2017-01-25 18:42:10 +0100
committerBenoit Foucher <benoit@zeroc.com>2017-01-25 18:42:10 +0100
commit524c89c8c5ea8be6d989c855095cf4c58097e654 (patch)
tree697a384847d23d3d84345b84339f42d63d45687a /csharp/test/TestCommon/TestApp.cs
parentFixed ICE-7281 - skipEmptyEncapsulation now checks for the encoding version (diff)
downloadice-524c89c8c5ea8be6d989c855095cf4c58097e654.tar.bz2
ice-524c89c8c5ea8be6d989c855095cf4c58097e654.tar.xz
ice-524c89c8c5ea8be6d989c855095cf4c58097e654.zip
First cut of ICE-6920 - Remove try/catch block around communicator destroy
Diffstat (limited to 'csharp/test/TestCommon/TestApp.cs')
-rw-r--r--csharp/test/TestCommon/TestApp.cs10
1 files changed, 1 insertions, 9 deletions
diff --git a/csharp/test/TestCommon/TestApp.cs b/csharp/test/TestCommon/TestApp.cs
index 330223ca25d..d840b1f40bf 100644
--- a/csharp/test/TestCommon/TestApp.cs
+++ b/csharp/test/TestCommon/TestApp.cs
@@ -85,15 +85,7 @@ namespace TestCommon
if(_communicator != null)
{
- try
- {
- _communicator.destroy();
- }
- catch(Exception ex)
- {
- Console.Out.WriteLine(_testName + ": " + ex);
- status = 1;
- }
+ _communicator.destroy();
_communicator = null;
}
return status;