Skip to content

Commit 7c4b36f

Browse files
Fix several code smells DynamicsValue/fake-xrm-easy#157
1 parent 376c0ff commit 7c4b36f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/FakeXrmEasy.Core/FileStorage/Db/Exceptions/MaxSizeExceededException.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ public class MaxSizeExceededException: Exception
1212
/// </summary>
1313
/// <param name="logicalName">The table with the column that has the max file size limitation</param>
1414
/// <param name="attributeName">The column with the max file size limitation</param>
15+
/// <param name="currentMaxSize">The current max file size limitation</param>
1516
internal MaxSizeExceededException(string logicalName, string attributeName, int currentMaxSize) :
1617
base($"Could not commit the file upload because the sum of the block sizes exceeds the current allowed max file size of {currentMaxSize.ToString()}KB for column '{attributeName}' in table '{logicalName}'")
1718
{

src/FakeXrmEasy.Core/FileStorage/Db/IInMemoryFileDbDownloader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ internal interface IInMemoryFileDbDownloader
1111

1212
List<FileDownloadSession> GetAllFileDownloadSessions();
1313

14-
byte[] DownloadFileBlock(DownloadBlockProperties uploadBlockProperties);
14+
byte[] DownloadFileBlock(DownloadBlockProperties downloadBlockProperties);
1515
}
1616
}

0 commit comments

Comments
 (0)