Skip to content

Commit

Permalink
Fix SharpZipLib exception namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
slxdy committed Jan 22, 2025
1 parent be9961d commit d3b80dd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Runtime.Serialization;

namespace MelonLoader.ICSharpCode.SharpZipLib.Core.Exceptions;
namespace MelonLoader.ICSharpCode.SharpZipLib;

/// <summary>
/// SharpZipBaseException is the base exception class for SharpZipLib.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Runtime.Serialization;

namespace MelonLoader.ICSharpCode.SharpZipLib.Core.Exceptions;
namespace MelonLoader.ICSharpCode.SharpZipLib;

/// <summary>
/// Indicates that an error occurred during decoding of a input stream due to corrupt
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Runtime.Serialization;

namespace MelonLoader.ICSharpCode.SharpZipLib.Core.Exceptions;
namespace MelonLoader.ICSharpCode.SharpZipLib;

/// <summary>
/// Indicates that the input stream could not decoded due to known library incompability or missing features
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Runtime.Serialization;

namespace MelonLoader.ICSharpCode.SharpZipLib.Core.Exceptions;
namespace MelonLoader.ICSharpCode.SharpZipLib;

/// <summary>
/// Indicates that the input stream could not decoded due to the stream ending before enough data had been provided
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Runtime.Serialization;

namespace MelonLoader.ICSharpCode.SharpZipLib.Core.Exceptions;
namespace MelonLoader.ICSharpCode.SharpZipLib;

/// <summary>
/// Indicates that a value was outside of the expected range when decoding an input stream
Expand Down

0 comments on commit d3b80dd

Please sign in to comment.