Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit f226e8d

Browse files
committed
Don't throw on these things
1 parent c762664 commit f226e8d

File tree

2 files changed

+4
-18
lines changed

2 files changed

+4
-18
lines changed

src/GitHub.Api/LocalSettings.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ public JsonBackedSettings()
4545
public override void Initialize()
4646
{
4747
cachePath = SettingsPath.Combine(SettingsFileName);
48+
logger.Trace("Initializing settings file at {0}", cachePath);
4849
LoadFromCache(cachePath);
4950
}
5051

src/IntegrationTests/Git/IntegrationTestEnvironment.cs

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -105,26 +105,11 @@ public string UnityProjectPath
105105
public string ExtensionInstallPath
106106
{
107107
get { return extensionInstallPath; }
108-
set { throw new NotImplementedException(); }
108+
set {}
109109
}
110110

111-
public NPath UserCachePath
112-
{
113-
get
114-
{
115-
return GetSpecialFolder(Environment.SpecialFolder.LocalApplicationData).ToNPath().Combine(ApplicationInfo.ApplicationName);
116-
}
117-
set { throw new NotImplementedException(); }
118-
}
119-
120-
public NPath SystemCachePath
121-
{
122-
get
123-
{
124-
return GetSpecialFolder(Environment.SpecialFolder.CommonApplicationData).ToNPath().Combine(ApplicationInfo.ApplicationName);
125-
}
126-
set { throw new NotImplementedException(); }
127-
}
111+
public NPath UserCachePath { get; set; }
112+
public NPath SystemCachePath { get; set; }
128113

129114
public string RepositoryPath { get; set; }
130115

0 commit comments

Comments
 (0)