From 0814f5cf3a6a47d7938cfd7142e7c1b1f89c25e4 Mon Sep 17 00:00:00 2001 From: Cenk Ergen <57065323+Cenngo@users.noreply.github.com> Date: Sat, 26 Mar 2022 19:26:20 +0300 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Quin Lynch <49576606+quinchs@users.noreply.github.com> --- src/Discord.Net.Core/Interactions/IRouteMatchContainer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } }