X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.osgi.boot%2Fsrc%2Forg%2Fargeo%2Fosgi%2Fboot%2Fa2%2FA2Branch.java;h=9e3f81dec95cbfa5758d18c3ea34a55145cace05;hb=c155192cfcd5ca355eb933fa3f55dbad6d01b958;hp=a9e5e5f90df2a884071be2eda5f9510933aceb1b;hpb=7e77ed8fc812ea81d5cecec67006fbe363150ef8;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.osgi.boot/src/org/argeo/osgi/boot/a2/A2Branch.java b/org.argeo.osgi.boot/src/org/argeo/osgi/boot/a2/A2Branch.java index a9e5e5f90..9e3f81dec 100644 --- a/org.argeo.osgi.boot/src/org/argeo/osgi/boot/a2/A2Branch.java +++ b/org.argeo.osgi.boot/src/org/argeo/osgi/boot/a2/A2Branch.java @@ -12,13 +12,13 @@ import org.osgi.framework.Version; * typically a combination of major and minor version, indicating backward * compatibility. */ -class A2Branch implements Comparable { +public class A2Branch implements Comparable { private final A2Component component; private final String id; final SortedMap modules = Collections.synchronizedSortedMap(new TreeMap<>()); - A2Branch(A2Component component, String id) { + public A2Branch(A2Component component, String id) { this.component = component; this.id = id; component.branches.put(id, this);