Fix formatting

This commit is contained in:
Adam Hathcock
2021-01-09 13:36:30 +00:00
parent e9f3add5b9
commit ee17dca9e5
3 changed files with 5 additions and 5 deletions

View File

@@ -19,7 +19,7 @@ namespace SharpCompress.Common.GZip
public override string Key => _filePart.FilePartName;
public override string? LinkTarget => null;
public override string? LinkTarget => null;
public override long CompressedSize => 0;

View File

@@ -357,8 +357,8 @@ namespace SharpCompress.Compressors.Deflate
_comment = value;
}
}
public DateTime? LastModified
{
get => _lastModified;

View File

@@ -26,7 +26,7 @@ namespace SharpCompress.Test.GZip
long size = entry.Size;
var scratch = new FileInfo(Path.Combine(SCRATCH_FILES_PATH, "Tar.tar"));
var test = new FileInfo(Path.Combine(TEST_ARCHIVES_PATH, "Tar.tar"));
Assert.Equal(size, scratch.Length);
Assert.Equal(size, test.Length);
}
@@ -46,7 +46,7 @@ namespace SharpCompress.Test.GZip
long size = entry.Size;
var scratch = new FileInfo(Path.Combine(SCRATCH_FILES_PATH, "Tar.tar"));
var test = new FileInfo(Path.Combine(TEST_ARCHIVES_PATH, "Tar.tar"));
Assert.Equal(size, scratch.Length);
Assert.Equal(size, test.Length);
}