Skip to content

Commit

Permalink
dotnet#74642 done minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mkhamoyan committed Sep 20, 2022
1 parent ff6cadb commit 3bf593a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ internal static partial class Helper
{
internal static string GetDataDirectory(IsolatedStorageScope scope)
{
// This is the relevant special folder for the given scope plus ".isolated-storage".
// This is the relevant special folder for the given scope plus IsolatedStorageDirectoryName.
// It is meant to replicate the behavior of the VM ComIsolatedStorage::GetRootDir().

// (note that Silverlight used "CoreIsolatedStorage" for a directory name and did not support machine scope)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ internal IsolatedStorageFile(IsolatedStorageScope scope)
// for non mobile platforms IsolatedStorageDirectoryName is "IsolatedStorage", for mobile platforms ".isolated-storage"
InitializeIsoStorageDirectoryName();

// InitStore will set up the IdentityHash
// InitStore will set up the IdentityHash
InitStore(scope, null, null);

StringBuilder sb = new StringBuilder(GetIsolatedStorageRoot());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ public void GetDefaultIdentityAndHash()
{
object identity;
string hash;
//TestHelper.InitHelper(out identity,out hash);
Helper.GetDefaultIdentityAndHash(out identity, out hash, '.');

Assert.NotNull(identity);
Expand Down

0 comments on commit 3bf593a

Please sign in to comment.