Fix incorrect documentation

This commit is contained in:
Mike Bierlee 2016-12-06 23:23:55 +01:00
parent 5f8924c917
commit ee35b07a87

View file

@ -95,12 +95,9 @@ private void printDebugAutowiredInstance(TypeInfo instanceType, void* instanceAd
/**
* Autowires members of a given instance using dependencies registered in the given container.
*
* All public members of the given instance, which are annotated using the "Autowire" UDA, are autowired.
* All members are resolved using the given container. Qualifiers are used to determine the type of class to
* resolve for any member of instance.
*
* Note that private members will not be autowired because the autowiring mechanism is not able to by-pass
* member visibility protection.
* All members of the given instance, which are annotated using the "Autowire" UDA, are autowired.
* Members can have any visibility (public, private, etc). All members are resolved using the given
* container. Qualifiers are used to determine the type of class to resolve for any member of instance.
*
* See_Also: Autowire
*/