Remove unused code.

This commit is contained in:
2022-03-17 23:54:41 +00:00
parent b05dc45d09
commit f0fa4d4320
30 changed files with 51 additions and 94 deletions

View File

@@ -110,10 +110,7 @@ public partial class Dump
ulong totalSize = blocks * blockSize;
if(totalSize > 1099511627776)
UpdateStatus?.
Invoke($"Media has {blocks} blocks of {blockSize} bytes/each. (for a total of {totalSize / 1099511627776d:F3} TiB)");
else if(totalSize > 1073741824)
if(totalSize > 1073741824)
UpdateStatus?.
Invoke($"Media has {blocks} blocks of {blockSize} bytes/each. (for a total of {totalSize / 1073741824d:F3} GiB)");
else if(totalSize > 1048576)