Skip to content

Commit

Permalink
fix(storage): Fix invalid inheritance in partial files of StorageFIle
Browse files Browse the repository at this point in the history
  • Loading branch information
dr1rrb committed Oct 9, 2020
1 parent 635714c commit a154e0d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Uno.UWP/Storage/StorageFile.Base.cs
Expand Up @@ -12,7 +12,7 @@

namespace Windows.Storage
{
public sealed partial class StorageFile
partial class StorageFile
{
private abstract class ImplementationBase
{
Expand Down
2 changes: 1 addition & 1 deletion src/Uno.UWP/Storage/StorageFile.Local.cs
Expand Up @@ -8,7 +8,7 @@

namespace Windows.Storage
{
public sealed partial class StorageFile
partial class StorageFile
{
private sealed class Local : ImplementationBase
{
Expand Down
2 changes: 1 addition & 1 deletion src/Uno.UWP/Storage/StorageFile.android.cs
Expand Up @@ -20,7 +20,7 @@

namespace Windows.Storage
{
public partial class StorageFile : StorageItem, IStorageFile
partial class StorageFile
{
private static ConcurrentEntryManager _assetGate = new ConcurrentEntryManager();

Expand Down
2 changes: 1 addition & 1 deletion src/Uno.UWP/Storage/StorageFile.iOSmacOS.cs
Expand Up @@ -8,7 +8,7 @@

namespace Windows.Storage
{
public partial class StorageFile : StorageItem, IStorageFile
partial class StorageFile
{
private static async Task<StorageFile> GetFileFromApplicationUri(CancellationToken ct, Uri uri)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Uno.UWP/Storage/StorageFile.wasm.cs
Expand Up @@ -13,7 +13,7 @@

namespace Windows.Storage
{
public partial class StorageFile : StorageItem, IStorageFile
partial class StorageFile
{
private static async Task<StorageFile> GetFileFromApplicationUri(CancellationToken ct, Uri uri)
{
Expand Down

0 comments on commit a154e0d

Please sign in to comment.