Skip to content

Commit 7abf3a8

Browse files
committed
rename var
1 parent 4844992 commit 7abf3a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/DacpacTool/Extensions.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -251,14 +251,14 @@ private static string EnsureIsDelimited(string name)
251251
{
252252
if (_ensureIsDelimitedMethod == null)
253253
{
254-
var method = Type.GetType("Microsoft.Data.Tools.Schema.Common.FileUtils, Microsoft.Data.Tools.Utilities");
254+
var fileUtilsType = Type.GetType("Microsoft.Data.Tools.Schema.Common.FileUtils, Microsoft.Data.Tools.Utilities");
255255

256-
if (method == null)
256+
if (fileUtilsType == null)
257257
{
258258
throw new InvalidOperationException("Unable to load Microsoft.Data.Tools.Utilities assembly.");
259259
}
260260

261-
_ensureIsDelimitedMethod = method
261+
_ensureIsDelimitedMethod = fileUtilsType
262262
.GetMethod("EnsureIsDelimited", BindingFlags.InvokeMethod | BindingFlags.Static | BindingFlags.Public, null, new[]{ typeof(string) }, null);
263263
}
264264

0 commit comments

Comments
 (0)