Skip to content

Commit

Permalink
Remove some non-possibly-future-proofed finals.
Browse files Browse the repository at this point in the history
enebo committed Aug 30, 2017

Unverified

This user has not yet uploaded their public signing key.
1 parent b025bd1 commit 0d9d128
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -65,7 +65,7 @@ public ArgumentDescriptor[] getArgumentDescriptors() {

public abstract InterpreterContext ensureInstrsReady();

public final Signature getSignature() {
public Signature getSignature() {
return signature;
}

Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@
import org.jruby.runtime.Visibility;
import org.jruby.runtime.builtin.IRubyObject;

public final class CompiledIRMethod extends AbstractIRMethod {
public class CompiledIRMethod extends AbstractIRMethod {
private final MethodHandle variable;

private final MethodHandle specific;
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/runtime/Signature.java
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@
/**
* A representation of a Ruby method signature (argument layout, min/max, keyword layout, rest args).
*/
public final class Signature {
public class Signature {
public enum Rest {
NONE, NORM, ANON, STAR;

0 comments on commit 0d9d128

Please sign in to comment.