Skip to content

Commit

Permalink
Removed unused constructors.
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvdrum committed Dec 11, 2014
1 parent e3ff922 commit ca99b12
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions core/src/main/java/org/jruby/RubyEncoding.java
Expand Up @@ -85,14 +85,6 @@ public static RubyClass createEncodingClass(Ruby runtime) {
private RubyEncoding(Ruby runtime, byte[] name, int p, int end, boolean isDummy) {
this(runtime, new ByteList(name, p, end), null, isDummy);
}

private RubyEncoding(Ruby runtime, byte[] name, boolean isDummy) {
this(runtime, name, 0, name.length, isDummy);
}

private RubyEncoding(Ruby runtime, Encoding encoding) {
this(runtime, new ByteList(encoding.getName()), encoding, false);
}

private RubyEncoding(Ruby runtime, byte[] name, Encoding encoding, boolean isDummy) {
this(runtime, new ByteList(name), encoding, isDummy);
Expand Down

0 comments on commit ca99b12

Please sign in to comment.