提交 d409d420 编写于 作者: C Cyrus Najmabadi

Add nullable

上级 710972ed
......@@ -2,6 +2,8 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#nullable enable
using System;
using System.Composition;
using Microsoft.CodeAnalysis.Editor.Shared.Utilities;
......@@ -21,7 +23,7 @@ internal class VisualStudioProjectTelemetryServiceFactory : IWorkspaceServiceFac
public VisualStudioProjectTelemetryServiceFactory(IThreadingContext threadingContext)
=> _threadingContext = threadingContext;
public IWorkspaceService CreateService(HostWorkspaceServices workspaceServices)
public IWorkspaceService? CreateService(HostWorkspaceServices workspaceServices)
{
if (!(workspaceServices.Workspace is VisualStudioWorkspaceImpl workspace))
return null;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册