From 6c51846c5b1e84616bdf7b41eed5d2ee222fcd71 Mon Sep 17 00:00:00 2001 From: Yaakov Date: Wed, 31 Jan 2024 21:01:27 +1100 Subject: [PATCH] fix public types causing xmldoc warnings by making them internal --- DepotDownloader/ContentDownloader.cs | 2 +- DepotDownloader/PlatformUtilities.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DepotDownloader/ContentDownloader.cs b/DepotDownloader/ContentDownloader.cs index 43254c22..21a482c7 100644 --- a/DepotDownloader/ContentDownloader.cs +++ b/DepotDownloader/ContentDownloader.cs @@ -11,7 +11,7 @@ using SteamKit2.CDN; namespace DepotDownloader { - public class ContentDownloaderException : Exception + class ContentDownloaderException : Exception { public ContentDownloaderException(String value) : base(value) { } } diff --git a/DepotDownloader/PlatformUtilities.cs b/DepotDownloader/PlatformUtilities.cs index 5ecdc8d3..9ffb70fb 100644 --- a/DepotDownloader/PlatformUtilities.cs +++ b/DepotDownloader/PlatformUtilities.cs @@ -3,7 +3,7 @@ using System.Runtime.InteropServices; namespace DepotDownloader { - public static class PlatformUtilities + static class PlatformUtilities { private const int ModeExecuteOwner = 0x0040; private const int ModeExecuteGroup = 0x0008;