File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
mcs/class/System/Mono.Net.Security Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -233,12 +233,8 @@ static void InitializeProviderRegistration ()
233
233
var unityTlsEntry = new Tuple < Guid , String > ( UnityTlsId , "Mono.Unity.UnityTlsProvider" ) ;
234
234
providerRegistration . Add ( "default" , unityTlsEntry ) ;
235
235
providerRegistration . Add ( "unitytls" , unityTlsEntry ) ;
236
-
237
- //Console.Out.WriteLine("UnityTls activated");
236
+ return ;
238
237
}
239
- else
240
- {
241
- //Console.Out.WriteLine("UnityTls not available, using Mono's default implementations");
242
238
#endif
243
239
244
240
var appleTlsEntry = new Tuple < Guid , String > ( AppleTlsId , "Mono.AppleTls.AppleTlsProvider" ) ;
@@ -257,7 +253,7 @@ static void InitializeProviderRegistration ()
257
253
providerRegistration . Add ( "btls" , btlsEntry ) ;
258
254
}
259
255
#endif
260
- #endif
256
+
261
257
if ( Platform . IsMacOS )
262
258
providerRegistration . Add ( "default" , appleTlsEntry ) ;
263
259
else if ( btlsEntry != null )
@@ -266,8 +262,6 @@ static void InitializeProviderRegistration ()
266
262
providerRegistration . Add ( "default" , legacyEntry ) ;
267
263
268
264
providerRegistration . Add ( "apple" , appleTlsEntry ) ;
269
- #if UNITY
270
- }
271
265
#endif
272
266
}
273
267
}
You can’t perform that action at this time.
0 commit comments