From: DrSmugleaf Date: Mon, 9 Oct 2023 07:19:32 +0000 (-0700) Subject: Fix test prototypes fields being marked as unused (#20853) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=d9b6f17d50bdb953ff8d673561cab3b72602fd69;p=space-station-14.git Fix test prototypes fields being marked as unused (#20853) --- diff --git a/Content.IntegrationTests/TestPrototypesAttribute.cs b/Content.IntegrationTests/TestPrototypesAttribute.cs index fc533927a4..a6728d6728 100644 --- a/Content.IntegrationTests/TestPrototypesAttribute.cs +++ b/Content.IntegrationTests/TestPrototypesAttribute.cs @@ -1,9 +1,12 @@ +using JetBrains.Annotations; + namespace Content.IntegrationTests; /// /// Attribute that indicates that a string contains yaml prototype data that should be loaded by integration tests. /// [AttributeUsage(AttributeTargets.Field)] +[MeansImplicitUse] public sealed class TestPrototypesAttribute : Attribute { }