Skip to content

Commit

Permalink
Jar ext service name must try default/bare package too.
Browse files Browse the repository at this point in the history
  • Loading branch information
headius committed Apr 2, 2015
1 parent ea92fba commit 31451d2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -72,7 +72,7 @@ static ClassExtensionLibrary tryFind(Ruby runtime, String searchName) {
StringBuilder classNameBuilder = new StringBuilder(searchName.length() * 2);
StringBuilder classFileBuilder = new StringBuilder(searchName.length() * 2);

for (int i = all.length - 2; i >= 0; i--) {
for (int i = all.length - 1; i >= 0; i--) {
buildClassName(classNameBuilder, classFileBuilder, all, i, serviceName);

// look for the filename in classloader resources
Expand Down

0 comments on commit 31451d2

Please sign in to comment.