summaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/container/di/componentgraph
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2021-10-18 09:31:32 +0200
committergjoranv <gv@verizonmedia.com>2021-10-18 09:31:32 +0200
commit4bee79304f977e176d7604eaf007100da839cef7 (patch)
treedb55dee12fb2d575461c410bf57812178ef178b0 /container-core/src/main/java/com/yahoo/container/di/componentgraph
parent7be07c0b148374e6c415fc96cd30a53a77283c61 (diff)
Whitespace only
Diffstat (limited to 'container-core/src/main/java/com/yahoo/container/di/componentgraph')
-rw-r--r--container-core/src/main/java/com/yahoo/container/di/componentgraph/core/ComponentGraph.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/container-core/src/main/java/com/yahoo/container/di/componentgraph/core/ComponentGraph.java b/container-core/src/main/java/com/yahoo/container/di/componentgraph/core/ComponentGraph.java
index c6c932d8743..86e6bc4fa4a 100644
--- a/container-core/src/main/java/com/yahoo/container/di/componentgraph/core/ComponentGraph.java
+++ b/container-core/src/main/java/com/yahoo/container/di/componentgraph/core/ComponentGraph.java
@@ -259,7 +259,7 @@ public class ComponentGraph {
Object instance;
try {
Level level = hasExplicitBinding(fallbackInjector, key) ? Level.FINE : Level.WARNING;
- log.log(level, () ->"Trying the fallback injector to create" + messageForNoGlobalComponent(clazz, node));
+ log.log(level, () -> "Trying the fallback injector to create" + messageForNoGlobalComponent(clazz, node));
if (level.intValue() > Level.INFO.intValue()) {
log.log(level, "A component of type " + key.getTypeLiteral() + " should probably be declared in services.xml. " +
"Not doing so may cause resource leaks and unnecessary reconstruction of components.");