Skip to content

Commit da3fa6d

Browse files
committed
Added missing accessibility modifier
1 parent 29d3890 commit da3fa6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rubberduck.Parsing/Inspections/PropertyBag.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Rubberduck.Parsing.Inspections
55
{
66
public class PropertyBag : DynamicObject
77
{
8-
readonly Dictionary<string, object> _properties = new Dictionary<string, object>();
8+
private readonly Dictionary<string, object> _properties = new Dictionary<string, object>();
99

1010
public override bool TryGetMember(GetMemberBinder binder, out object result)
1111
{

0 commit comments

Comments
 (0)