From ca2c78130112158ca2200145088477c62b1c03ce Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Sat, 26 Oct 2024 13:42:55 -0400 Subject: [PATCH] Make Environment.NewLine const instead of static readonly --- BeefLibs/corlib/src/Environment.bf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BeefLibs/corlib/src/Environment.bf b/BeefLibs/corlib/src/Environment.bf index d321964f..27f9ad0a 100644 --- a/BeefLibs/corlib/src/Environment.bf +++ b/BeefLibs/corlib/src/Environment.bf @@ -8,9 +8,9 @@ namespace System public static class Environment { #if BF_PLATFORM_WINDOWS - public static readonly String NewLine = "\r\n"; + public const String NewLine = "\r\n"; #else - public static readonly String NewLine = "\n"; + public const String NewLine = "\n"; #endif // BF_PLATFORM_WINDOWS