Skip to content
This repository has been archived by the owner on Nov 2, 2021. It is now read-only.

Commit

Permalink
Fixed name mismatch.
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamABradley committed Jan 8, 2018
1 parent a319d10 commit 593bb25
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

namespace PlatformBindings.Models.FileSystem
{
public interface IUWPFileSystemContainer
public interface IUWPStorageContainer
{
IStorageItem Item { get; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

namespace PlatformBindings.Models.FileSystem
{
public class UWPFileContainer : FileContainer, IUWPFileSystemContainer
public class UWPFileContainer : FileContainer, IUWPStorageContainer
{
public UWPFileContainer(StorageFile File)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

namespace PlatformBindings.Models.FileSystem
{
public class UWPFolderContainer : FolderContainer, IUWPFileSystemContainer
public class UWPFolderContainer : FolderContainer, IUWPStorageContainer
{
public UWPFolderContainer(StorageFolder Folder)
{
Expand Down
2 changes: 1 addition & 1 deletion Platform/Platforms/UWP/Services/UWPFutureAccessManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public string GetFutureAccessPermission(StorageContainer Item)
}

IStorageItem ItemToStore = null;
if (Item is IUWPFileSystemContainer container)
if (Item is IUWPStorageContainer container)
{
ItemToStore = container.Item;
}
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.2.14-alpha",
"version": "0.2.15-alpha",
"publicReleaseRefSpec": [
"^refs/heads/master$", // we release out of master
"^refs/heads/v\\d+\\.\\d+" // we also release branches starting with vN.N
Expand Down

0 comments on commit 593bb25

Please sign in to comment.