diff options
author | Jose <jose@zeroc.com> | 2016-12-29 21:01:16 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-12-29 21:01:16 +0100 |
commit | 54941beff80f3ebab2b15af4609c7ec8bc0d941e (patch) | |
tree | bdd4eb6573f5c4673c2129cc2eb616b1188fc543 /csharp/src/Ice/ProtocolPluginFacade.cs | |
parent | JavaScript Ice.Long fixes and improvements (diff) | |
download | ice-54941beff80f3ebab2b15af4609c7ec8bc0d941e.tar.bz2 ice-54941beff80f3ebab2b15af4609c7ec8bc0d941e.tar.xz ice-54941beff80f3ebab2b15af4609c7ec8bc0d941e.zip |
CSharp cleanup and fixes:
- Add EditorBrowsable(EditorBrowsableState.Never) to
hidde internal public methods from Intellisense,
see ICE-7448.
- Remove Base64 and replace it with .NET System.Convert
see ICE-7477
- Remove SysLogger as that was only used by Mono
- Simplify ThreadPriority setting
- Remove using statements that are not required
- Normalize string, char, object spell, preferred over
String, Char, Object
- Shorthen qualifier names avoiding redundant scopes.
Diffstat (limited to 'csharp/src/Ice/ProtocolPluginFacade.cs')
-rw-r--r-- | csharp/src/Ice/ProtocolPluginFacade.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/src/Ice/ProtocolPluginFacade.cs b/csharp/src/Ice/ProtocolPluginFacade.cs index cde21ecb7b1..8f88ac6dad5 100644 --- a/csharp/src/Ice/ProtocolPluginFacade.cs +++ b/csharp/src/Ice/ProtocolPluginFacade.cs @@ -38,7 +38,7 @@ namespace IceInternal public ProtocolPluginFacadeI(Ice.Communicator communicator) { _communicator = communicator; - _instance = IceInternal.Util.getInstance(communicator); + _instance = Util.getInstance(communicator); } // |