[jruby-joni] 13/223: Fix wrong method invocation (joni trunk).
Hideki Yamane
henrich at moszumanska.debian.org
Mon Nov 16 11:21:39 UTC 2015
This is an automated email from the git hooks/post-receive script.
henrich pushed a commit to branch debian/sid
in repository jruby-joni.
commit 2491e2eba9ca8be319ff7b7d195bf7773fc7243c
Author: Marcin Mielżyński <lopx at gazeta.pl>
Date: Sat Jan 12 22:25:39 2008 +0000
Fix wrong method invocation (joni trunk).
git-svn-id: http://svn.codehaus.org/jruby/joni/trunk@5565 961051c9-f516-0410-bf72-c9f7e237a7b7
---
src/org/joni/Compiler.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/org/joni/Compiler.java b/src/org/joni/Compiler.java
index e8f32bf..b59006e 100644
--- a/src/org/joni/Compiler.java
+++ b/src/org/joni/Compiler.java
@@ -285,7 +285,7 @@ final class Compiler extends Analyser {
if (op == OPCode.EXACTN_IC || op == OPCode.EXACTN_IC_SB) {
addLength(mbLength * strLength);
} else {
- addOpcode(strLength);
+ addLength(strLength);
}
}
regex.addBytes(bytes, p, mbLength * strLength);
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jruby-joni.git
More information about the pkg-java-commits
mailing list