Skip to content

Commit 5fb43c4

Browse files
committed
Whitespace cleanup
1 parent 91b075f commit 5fb43c4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/libraries/System.Private.CoreLib/src/System/Collections/Generic/Dictionary.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ internal Dictionary(int capacity, IEqualityComparer<TKey>? comparer, bool usePro
6868
{
6969
_comparer = comparer ?? EqualityComparer<TKey>.Default;
7070

71-
if (!useProvidedComparer) {
71+
if (!useProvidedComparer)
72+
{
7273
// Special-case EqualityComparer<string>.Default, StringComparer.Ordinal, and StringComparer.OrdinalIgnoreCase.
7374
// We use a non-randomized comparer for improved perf, falling back to a randomized comparer if the
7475
// hash buckets become unbalanced.

src/mono/mono/metadata/appdomain.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -880,9 +880,9 @@ mono_runtime_install_appctx_properties (void)
880880
for (int i = 0; i < n_appctx_props; ++i) {
881881
glong num_chars;
882882
combined_keys [i] = g_utf8_to_utf16 (appctx_keys [i], -1, NULL, &num_chars, NULL);
883-
combined_key_lengths[i] = GLONG_TO_UINT32(num_chars);
883+
combined_key_lengths [i] = GLONG_TO_UINT32 (num_chars);
884884
combined_values [i] = g_utf8_to_utf16 (appctx_values [i], -1, NULL, &num_chars, NULL);
885-
combined_value_lengths[i] = GLONG_TO_UINT32(num_chars);
885+
combined_value_lengths [i] = GLONG_TO_UINT32 (num_chars);
886886
}
887887

888888
runtimeconfig_json_read_props (

0 commit comments

Comments
 (0)