Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 31451d2

Please sign in to comment.