Disable warnings in copypasta'd code

fixes 160217ef7
This commit is contained in:
YoshiRulz 2021-06-15 08:49:04 +10:00
parent ea369408fb
commit 8470fcfc72
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,8 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#pragma warning disable
using System;
using System.Diagnostics;
using System.Text;

View File

@ -1,7 +1,8 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#nullable enable
#pragma warning disable
using System.Diagnostics.CodeAnalysis;
using System.Runtime.CompilerServices;