diff --git a/src/Discord.Net.Core/Interactions/IRouteMatchContainer.cs b/src/Discord.Net.Core/Interactions/IRouteMatchContainer.cs index 68007f2a7..3dbcd041e 100644 --- a/src/Discord.Net.Core/Interactions/IRouteMatchContainer.cs +++ b/src/Discord.Net.Core/Interactions/IRouteMatchContainer.cs @@ -10,12 +10,12 @@ namespace Discord /// /// Gets the collection of the captured route segments. /// - public IEnumerable SegmentMatches { get; } + IEnumerable SegmentMatches { get; } /// /// Sets the propert /// /// The collection of captured route segments. - public void SetSegmentMatches(IEnumerable segmentMatches); + void SetSegmentMatches(IEnumerable segmentMatches); } }