summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/objects/DI.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/test/Ice/objects/DI.cs')
-rw-r--r--csharp/test/Ice/objects/DI.cs14
1 files changed, 1 insertions, 13 deletions
diff --git a/csharp/test/Ice/objects/DI.cs b/csharp/test/Ice/objects/DI.cs
index 7aae44accd0..bae5e713979 100644
--- a/csharp/test/Ice/objects/DI.cs
+++ b/csharp/test/Ice/objects/DI.cs
@@ -11,16 +11,6 @@ using Test;
public sealed class DI : D
{
- public DI()
- {
- _postUnmarshalInvoked = false;
- }
-
- public override bool postUnmarshalInvoked(Ice.Current current)
- {
- return _postUnmarshalInvoked;
- }
-
public override void ice_preMarshal()
{
preMarshalInvoked = true;
@@ -28,8 +18,6 @@ public sealed class DI : D
public override void ice_postUnmarshal()
{
- _postUnmarshalInvoked = true;
+ postUnmarshalInvoked = true;
}
-
- private bool _postUnmarshalInvoked;
}