style?: declare access levels

This commit is contained in:
2026-06-18 16:43:22 -03:00
parent a3eb9970c6
commit 188ce7bdee
+2 -2
View File
@@ -172,7 +172,7 @@ class Dumper
/*
* internal helper functions
*/
bool TryGetProp<T>(IEnumerable<FPropertyTag> properties, string propName, out T value)
private bool TryGetProp<T>(IEnumerable<FPropertyTag> 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<T>(IEnumerable<FPropertyTag> properties, string propName, out string value)
private bool TryGetStringProp<T>(IEnumerable<FPropertyTag> properties, string propName, out string value)
{
if (TryGetProp<T>(properties, propName, out var rawValue) && rawValue != null)
{