Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Commit

Permalink
attempted fix for issue #57
Browse files Browse the repository at this point in the history
  • Loading branch information
rellermeyer committed Oct 19, 2018
1 parent e88b966 commit da96bfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2770,7 +2770,7 @@ && checkActivation(pkg)) {

// TODO: first check if dynImport could apply to the
// requested package!!!
if (RFC1960Filter.stringCompare(
if (pkg.length() > 0 && RFC1960Filter.stringCompare(
dynImportPackage.toCharArray(), 0,
pkg.toCharArray(), 0) != 0) {
continue;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public final class Concierge extends AbstractBundle implements Framework,
/**
* Version displayed upon startup and returned by System Bundle
*/
private static final String FRAMEWORK_VERSION = "5.1.0.SNAPSHOT-20171014090828";
private static final String FRAMEWORK_VERSION = "5.1.0.SNAPSHOT";

@SuppressWarnings("deprecation")
private static Class<?> SERVICE_EVENT_HOOK_CLASS = org.osgi.framework.hooks.service.EventHook.class;
Expand Down

0 comments on commit da96bfd

Please sign in to comment.