summaryrefslogtreecommitdiffstats
path: root/container-di
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@verizonmedia.com>2019-10-01 13:59:35 +0200
committerJon Bratseth <bratseth@verizonmedia.com>2019-10-01 13:59:35 +0200
commit16097dda02938e83a490cfb518c60f50ea4c605c (patch)
treeb61492a54139577e34a39917551398e78125126f /container-di
parentecffdfce4d6d8758bb722b2c13c002f34d780cab (diff)
Nonfunctional changes only
Diffstat (limited to 'container-di')
-rw-r--r--container-di/src/main/java/com/yahoo/container/bundle/BundleInstantiationSpecification.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/container-di/src/main/java/com/yahoo/container/bundle/BundleInstantiationSpecification.java b/container-di/src/main/java/com/yahoo/container/bundle/BundleInstantiationSpecification.java
index 440a687a671..0fb8a99a957 100644
--- a/container-di/src/main/java/com/yahoo/container/bundle/BundleInstantiationSpecification.java
+++ b/container-di/src/main/java/com/yahoo/container/bundle/BundleInstantiationSpecification.java
@@ -63,13 +63,13 @@ public final class BundleInstantiationSpecification {
new ComponentSpecification(idSpec),
(classSpec == null || classSpec.isEmpty())? null : new ComponentSpecification(classSpec),
(bundleSpec == null || bundleSpec.isEmpty())? null : new ComponentSpecification(bundleSpec));
-
}
/**
* Return a new instance of the specification with bundle name altered
- * @param bundleName New name of bundle
- * @return the new instance of the specification.
+ *
+ * @param bundleName the new name of the bundle
+ * @return the new instance of the specification
*/
public BundleInstantiationSpecification inBundle(String bundleName) {
return new BundleInstantiationSpecification(this.id, this.classId, new ComponentSpecification(bundleName));