mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Explicitly set flag on archive types
This commit is contained in:
@@ -24,13 +24,13 @@ namespace SabreTools.FileTypes
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create a new Archive with no base file
|
/// Create a new Archive with no base file
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public BaseArchive() : base() { }
|
public BaseArchive() : base(writeToParent: false) { }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create a new BaseArchive from the given file
|
/// Create a new BaseArchive from the given file
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="filename">Name of the file to use</param>
|
/// <param name="filename">Name of the file to use</param>
|
||||||
public BaseArchive(string filename) : base(filename) { }
|
public BaseArchive(string filename) : base(filename, writeToParent: false) { }
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user