summaryrefslogtreecommitdiff
path: root/csharp/test/xamarin/controller/MainPage.xaml.cs
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2018-12-20 12:56:13 +0100
committerJose <jose@zeroc.com>2018-12-20 12:56:42 +0100
commit017c304ad07fd2e8939c77d5c7f788bcace54268 (patch)
treed7aca5a957aa5cd09b16cf7ea433614cb292881e /csharp/test/xamarin/controller/MainPage.xaml.cs
parentImprove global metadata code style, Close #321 (diff)
downloadice-017c304ad07fd2e8939c77d5c7f788bcace54268.tar.bz2
ice-017c304ad07fd2e8939c77d5c7f788bcace54268.tar.xz
ice-017c304ad07fd2e8939c77d5c7f788bcace54268.zip
Simplify C# ControllerHelper interface
Diffstat (limited to 'csharp/test/xamarin/controller/MainPage.xaml.cs')
-rw-r--r--csharp/test/xamarin/controller/MainPage.xaml.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp/test/xamarin/controller/MainPage.xaml.cs b/csharp/test/xamarin/controller/MainPage.xaml.cs
index 326d59de559..f07697b63f0 100644
--- a/csharp/test/xamarin/controller/MainPage.xaml.cs
+++ b/csharp/test/xamarin/controller/MainPage.xaml.cs
@@ -560,7 +560,7 @@ namespace controller
public class ProccessI : Test.Common.ProcessDisp_
{
- public ProccessI(ControllerHelper controllerHelper)
+ public ProccessI(ControllerHelperI controllerHelper)
{
_controllerHelper = controllerHelper;
}
@@ -583,7 +583,7 @@ namespace controller
return _controllerHelper.getOutput();
}
- private ControllerHelper _controllerHelper;
+ private ControllerHelperI _controllerHelper;
}
public class ProcessControllerI : Test.Common.ProcessControllerDisp_