Skip to content

Commit

Permalink
fix public types causing xmldoc warnings by making them internal
Browse files Browse the repository at this point in the history
  • Loading branch information
yaakov-h committed Jan 31, 2024
1 parent 679e019 commit 6c51846
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DepotDownloader/ContentDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace DepotDownloader
{
public class ContentDownloaderException : Exception
class ContentDownloaderException : Exception
{
public ContentDownloaderException(String value) : base(value) { }
}
Expand Down
2 changes: 1 addition & 1 deletion DepotDownloader/PlatformUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace DepotDownloader
{
public static class PlatformUtilities
static class PlatformUtilities
{
private const int ModeExecuteOwner = 0x0040;
private const int ModeExecuteGroup = 0x0008;
Expand Down

0 comments on commit 6c51846

Please sign in to comment.