From 98e5bfb16e9bd3dab7992b8705e404bd27afbdb4 Mon Sep 17 00:00:00 2001 From: CyrusNajmabadi Date: Tue, 30 May 2017 22:17:00 -0700 Subject: [PATCH] Make fields private. --- ...PackageReference.InstallPackageAndAddImportCodeAction.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Features/Core/Portable/AddImport/CodeActions/PackageReference.InstallPackageAndAddImportCodeAction.cs b/src/Features/Core/Portable/AddImport/CodeActions/PackageReference.InstallPackageAndAddImportCodeAction.cs index 75d8f249993..56a8ce044b9 100644 --- a/src/Features/Core/Portable/AddImport/CodeActions/PackageReference.InstallPackageAndAddImportCodeAction.cs +++ b/src/Features/Core/Portable/AddImport/CodeActions/PackageReference.InstallPackageAndAddImportCodeAction.cs @@ -28,17 +28,17 @@ private class InstallPackageAndAddImportCodeAction : CodeAction /// The document before we added the import. Used so we can roll back if installing /// the package failed. /// - public readonly Document OldDocument; + private readonly Document OldDocument; /// /// The document after the import has been added. /// - public readonly Document NewDocument; + private readonly Document NewDocument; /// /// The operation that will actually install the nuget package. /// - public readonly InstallPackageDirectlyCodeActionOperation InstallOperation; + private readonly InstallPackageDirectlyCodeActionOperation InstallOperation; public InstallPackageAndAddImportCodeAction( string title, -- GitLab