summaryrefslogtreecommitdiffstats
path: root/standalone-container
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-12-02 12:38:30 +0100
committerHenning Baldersheim <balder@yahoo-inc.com>2022-12-02 12:58:25 +0100
commitcc25a94b7e3d45d01c35fc464d8bb67165b1480e (patch)
tree2eebc3a2d44e95902e4d0867f5fb274203afd428 /standalone-container
parente88b274e49c2b74495caa210621ac0cc47d797cc (diff)
Let list handling catch up with Java 17
Diffstat (limited to 'standalone-container')
-rw-r--r--standalone-container/src/main/java/com/yahoo/application/container/impl/ClassLoaderOsgiFramework.java13
1 files changed, 6 insertions, 7 deletions
diff --git a/standalone-container/src/main/java/com/yahoo/application/container/impl/ClassLoaderOsgiFramework.java b/standalone-container/src/main/java/com/yahoo/application/container/impl/ClassLoaderOsgiFramework.java
index 1526bc3dc5d..48f1efc7615 100644
--- a/standalone-container/src/main/java/com/yahoo/application/container/impl/ClassLoaderOsgiFramework.java
+++ b/standalone-container/src/main/java/com/yahoo/application/container/impl/ClassLoaderOsgiFramework.java
@@ -1,7 +1,6 @@
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.application.container.impl;
-import com.google.common.collect.Lists;
import com.yahoo.container.standalone.StandaloneContainerApplication;
import com.yahoo.jdisc.application.OsgiFramework;
import com.yahoo.jdisc.application.OsgiHeader;
@@ -51,15 +50,15 @@ import java.util.jar.JarFile;
*/
public final class ClassLoaderOsgiFramework implements OsgiFramework {
- private BundleContextImpl bundleContextImpl = new BundleContextImpl();
- private SystemBundleImpl systemBundleImpl = new SystemBundleImpl();
- private BundleWiringImpl bundleWiringImpl = new BundleWiringImpl();
+ private final BundleContextImpl bundleContextImpl = new BundleContextImpl();
+ private final SystemBundleImpl systemBundleImpl = new SystemBundleImpl();
+ private final BundleWiringImpl bundleWiringImpl = new BundleWiringImpl();
- private List<URL> bundleLocations = new ArrayList<>();
- private List<Bundle> bundleList = Lists.newArrayList(systemBundleImpl);
+ private final List<URL> bundleLocations = new ArrayList<>();
+ private final List<Bundle> bundleList = new ArrayList<>(List.of(systemBundleImpl));
private ClassLoader classLoader = null;
- private AtomicInteger nextBundleId = new AtomicInteger(1);
+ private final AtomicInteger nextBundleId = new AtomicInteger(1);
@Override
public List<Bundle> installBundle(String bundleLocation) {