We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if (this.Settings.InjectParentPrivateProperties) { for (Type parentType = type.GetTypeInfo().BaseType; parentType != null; parentType = parentType.GetTypeInfo().BaseType) { properties.AddRange(this.GetPrivateProperties(type.GetTypeInfo().BaseType)); } }
Note that this does the same thing over and over. It seems that it should be:
if (this.Settings.InjectParentPrivateProperties) { for (Type parentType = type.GetTypeInfo().BaseType; parentType != null; parentType = parentType.GetTypeInfo().BaseType) { properties.AddRange(this.GetPrivateProperties(parentType)); } }
The text was updated successfully, but these errors were encountered:
Fixed #241 and #217
68a8ca4
Fixed ninject/Ninject#241 and ninject/Ninject#217
774851e
scott-xu
No branches or pull requests
Note that this does the same thing over and over. It seems that it should be:
The text was updated successfully, but these errors were encountered: