Status: New
Owner: ----
New issue 699 by [email protected]: NullPointerException in
com.google.inject.internal.Injector.get(Errors errors)
http://code.google.com/p/google-guice/issues/detail?id=699
At some unknown times the membersInjector is null, thus
---
// toInject needs injection, do it right away. we only do this once, even
if it fails
if (pendingInjection.remove(instance) != null) {
// if in Stage.TOOL, we only want to inject & notify toolable
injection points.
// (otherwise we'll inject all of them)
***membersInjector***.injectAndNotify(instance,
errors.withSource(source), injector.options.stage == Stage.TOOL);
}
---
yields NullPointerException.
Is it intended that membersInjector can be null in some cases? If I knew
reason for it, I could try to track more why in my case it was null.
--
You received this message because you are subscribed to the Google Groups
"google-guice-dev" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-guice-dev?hl=en.