提交 1e158d8f 编写于 作者: J Jason Malinowski

Fix using statements to use correct copy of PooledObjects

The Microsoft.CodeAnalysis.FlowAnalysis.Utilities assembly which we
consume accidentally made it's copy of the PooledObjects helper public.
That copy has a different namespace, so by using the wrong namespace
we were pulling in that assembly's copy rather than using the copy we
have in our assembly. This causes us to do an early assembly load when
it's absolutely not necessary.
上级 de252237
......@@ -2,8 +2,8 @@
using System;
using System.Collections.Generic;
using Analyzer.Utilities.PooledObjects;
using Microsoft.CodeAnalysis.Editor.Shared.Utilities;
using Microsoft.CodeAnalysis.PooledObjects;
using Microsoft.VisualStudio.Editor;
using Microsoft.VisualStudio.Shell.Interop;
using Microsoft.VisualStudio.Text;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册