mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-25 20:52:44 +01:00
Remove redundant constructors
This commit is contained in:
parent
1c5d114007
commit
39a6d36528
@ -1,17 +1,10 @@
|
||||
namespace Nikse.SubtitleEdit.Logic.TransportStream
|
||||
{
|
||||
|
||||
public class EbuPesDataField
|
||||
{
|
||||
public int DataUnitId { get; set; }
|
||||
public int DataUnitLength { get; set; }
|
||||
public byte[] DataField { get; set; }
|
||||
public EbuPesDataFieldText FieldText;
|
||||
|
||||
public EbuPesDataField()
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -9,9 +9,7 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
[Serializable]
|
||||
public class RiffParserException : ApplicationException
|
||||
{
|
||||
|
||||
public RiffParserException()
|
||||
: base()
|
||||
{
|
||||
}
|
||||
|
||||
@ -147,10 +145,6 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
|
||||
#endregion public Members
|
||||
|
||||
public RiffParser()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Determine if the file is a valid RIFF file
|
||||
/// </summary>
|
||||
|
@ -92,7 +92,7 @@ namespace ComponentAce.Compression.Libs.zlib
|
||||
|
||||
private System.IO.Stream out_Renamed;
|
||||
|
||||
public ZOutputStream(System.IO.Stream out_Renamed):base()
|
||||
public ZOutputStream(System.IO.Stream out_Renamed)
|
||||
{
|
||||
InitBlock();
|
||||
this.out_Renamed = out_Renamed;
|
||||
@ -100,7 +100,7 @@ namespace ComponentAce.Compression.Libs.zlib
|
||||
compress = false;
|
||||
}
|
||||
|
||||
public ZOutputStream(System.IO.Stream out_Renamed, int level):base()
|
||||
public ZOutputStream(System.IO.Stream out_Renamed, int level)
|
||||
{
|
||||
InitBlock();
|
||||
this.out_Renamed = out_Renamed;
|
||||
|
@ -45,13 +45,10 @@ using System;
|
||||
|
||||
namespace ComponentAce.Compression.Libs.zlib
|
||||
{
|
||||
|
||||
[Serializable]
|
||||
public class ZStreamException : System.IO.IOException
|
||||
{
|
||||
|
||||
public ZStreamException()
|
||||
: base()
|
||||
{
|
||||
}
|
||||
|
||||
@ -59,6 +56,5 @@ namespace ComponentAce.Compression.Libs.zlib
|
||||
: base(s)
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user