Skip to content

Commit 9db0e6b

Browse files
committed
Code styling
1 parent 40b5b8c commit 9db0e6b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ImageSharp.Web.Providers.AWS/Caching/AWSS3StorageCache.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ public Task SetAsync(string key, Stream stream, ImageCacheMetadata metadata)
123123
return null;
124124
}
125125

126+
private string GetKeyWithFolder(string key)
127+
=> this.cacheFolder + key;
128+
126129
/// <summary>
127130
/// <see href="https://github.com/aspnet/AspNetIdentity/blob/b7826741279450c58b230ece98bd04b4815beabf/src/Microsoft.AspNet.Identity.Core/AsyncHelper.cs"/>
128131
/// </summary>
@@ -170,7 +173,4 @@ public static TResult RunSync<TResult>(Func<Task<TResult>> task)
170173
}).Unwrap().GetAwaiter().GetResult();
171174
}
172175
}
173-
174-
private string GetKeyWithFolder(string key)
175-
=> this.cacheFolder + key;
176176
}

0 commit comments

Comments
 (0)