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 9a83236 commit f78f7cfCopy full SHA for f78f7cf
extensions/assistedinject/src/com/google/inject/assistedinject/FactoryProvider2.java
@@ -377,8 +377,9 @@ public TypeLiteral<?> getImplementationType() {
377
&& userLookups == null
378
&& !Modifier.isPublic(factory.getClass().getModifiers())) {
379
warnedAboutUserLookups = true;
380
+ // TODO(b/179303203): Upgrade this back to WARNING level
381
logger.log(
- Level.WARNING,
382
+ Level.INFO,
383
"AssistedInject factory {0} is non-public and has javac-generated default methods. "
384
+ " Please pass a `MethodHandles.lookups()` with"
385
+ " FactoryModuleBuilder.withLookups when using this factory so that Guice can"
0 commit comments