From 188ce7bdeed8c9bd0eccbbd24b763ecc8e004a75 Mon Sep 17 00:00:00 2001 From: neru Date: Thu, 18 Jun 2026 16:43:22 -0300 Subject: [PATCH] style?: declare access levels --- src/dumper/dumper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dumper/dumper.cs b/src/dumper/dumper.cs index 89ec531..0c6dd9c 100644 --- a/src/dumper/dumper.cs +++ b/src/dumper/dumper.cs @@ -172,7 +172,7 @@ class Dumper /* * internal helper functions */ - bool TryGetProp(IEnumerable properties, string propName, out T value) + private bool TryGetProp(IEnumerable properties, string propName, out T value) { var prop = properties.FirstOrDefault(p => p.Name.Text == propName); if (prop?.Tag != null) @@ -188,7 +188,7 @@ class Dumper value = default!; return false; } - bool TryGetStringProp(IEnumerable properties, string propName, out string value) + private bool TryGetStringProp(IEnumerable properties, string propName, out string value) { if (TryGetProp(properties, propName, out var rawValue) && rawValue != null) {