Don't track the generated Java lexer.
This commit is contained in:
parent
d2742cfdde
commit
eeeeb0efad
|
@ -14,3 +14,4 @@ profile/samples/*/*.txt
|
||||||
tmp
|
tmp
|
||||||
|
|
||||||
ext/liboga/lexer.c
|
ext/liboga/lexer.c
|
||||||
|
ext/liboga/org/liboga/xml/Lexer.java
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
package org.liboga.xml;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
import org.jruby.Ruby;
|
|
||||||
import org.jruby.RubyModule;
|
|
||||||
import org.jruby.RubyClass;
|
|
||||||
import org.jruby.RubyObject;
|
|
||||||
import org.jruby.anno.JRubyClass;
|
|
||||||
import org.jruby.anno.JRubyMethod;
|
|
||||||
import org.jruby.runtime.ThreadContext;
|
|
||||||
import org.jruby.runtime.builtin.IRubyObject;
|
|
||||||
|
|
||||||
@JRubyClass(name="Oga::XML::Lexer", parent="Object")
|
|
||||||
public class Lexer extends RubyObject
|
|
||||||
{
|
|
||||||
public Lexer(Ruby runtime, RubyClass klass)
|
|
||||||
{
|
|
||||||
super(runtime, klass);
|
|
||||||
}
|
|
||||||
|
|
||||||
@JRubyMethod
|
|
||||||
public IRubyObject advance_native(ThreadContext context)
|
|
||||||
{
|
|
||||||
return context.getRuntime().getNil();
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue