1
0
mirror of synced 2025-01-31 12:23:52 +01:00

Fix appveyor errors

This commit is contained in:
KillzXGaming 2019-06-18 16:23:24 -04:00
parent a04ced5a32
commit 2f3c60c068

View File

@ -193,13 +193,13 @@ namespace FirstPlugin
public override byte[] FileData public override byte[] FileData
{ {
get { return GetFileBytes();} get { return GetFileBytes(); }
set { base.FileData = value;} set { base.FileData = value; }
} }
public override string FileSize => STMath.GetFileSize((long)DecompressedSize, 4); public override string FileSize { get { return STMath.GetFileSize((long)DecompressedSize, 4); } }
public override object DisplayProperties => this; public override object DisplayProperties { get { return this; } }
public override IFileFormat OpenFile() public override IFileFormat OpenFile()
{ {