We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e267513 commit c68eeb1Copy full SHA for c68eeb1
1 file changed
src/monkstone/fastmath/Deglut.java
@@ -23,7 +23,6 @@
23
import org.jruby.Ruby;
24
import org.jruby.RubyClass;
25
import org.jruby.RubyModule;
26
-import org.jruby.RubyObject;
27
import org.jruby.anno.JRubyModule;
28
import org.jruby.anno.JRubyMethod;
29
import org.jruby.runtime.ThreadContext;
@@ -34,7 +33,7 @@
34
33
* @author Martin Prout
35
*/
36
@JRubyModule(name = "DegLut")
37
-public class Deglut extends RubyObject {
+public class Deglut {
38
39
/**
40
* Lookup table for degree cosine/sine, has a fixed precision 1.0
@@ -79,15 +78,7 @@ public static void createDeglut(final Ruby runtime){
79
78
Deglut.initTable();
80
}
81
82
- /**
83
- *
84
- * @param runtime Ruby
85
- * @param klass RubyClass
86
- */
87
- private Deglut(Ruby runtime, RubyClass klass) {
88
- super(runtime, klass);
89
- }
90
-
+
91
92
*
93
* @param context ThreadContext
0 commit comments