We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d73685 commit c1e0de8Copy full SHA for c1e0de8
Runtime/Attributes/Injected.cs
@@ -8,8 +8,7 @@ public class Injected : System.Attribute {
8
public static void SetAttributeValues (System.Object target) {
9
var _fields = target.GetType ().GetFields (
10
System.Reflection.BindingFlags.Instance |
11
- System.Reflection.BindingFlags.NonPublic |
12
- System.Reflection.BindingFlags.Public);
+ System.Reflection.BindingFlags.NonPublic);
13
foreach (var _field in _fields)
14
if (System.Attribute.GetCustomAttribute (_field, typeof (Injected)) != null)
15
foreach (var _fieldInterface in _field.FieldType.GetInterfaces ()) {
0 commit comments