From e2c2d3a1e1c94cf407f71e4ffcabfb1c5909609a Mon Sep 17 00:00:00 2001 From: Stanley Goldman Date: Mon, 31 Jul 2017 17:07:43 -0400 Subject: [PATCH] Removing virtual from members --- src/GitHub.Api/Platform/Settings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GitHub.Api/Platform/Settings.cs b/src/GitHub.Api/Platform/Settings.cs index 78689d6cd..bc570d6ae 100644 --- a/src/GitHub.Api/Platform/Settings.cs +++ b/src/GitHub.Api/Platform/Settings.cs @@ -16,7 +16,7 @@ abstract class BaseSettings : ISettings public abstract void Unset(string key); protected virtual string SettingsFileName { get; set; } - protected virtual NPath SettingsPath { get; set; } + protected NPath SettingsPath { get; set; } } class JsonBackedSettings : BaseSettings