Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/util/Pack.java
Original file line number Diff line number Diff line change
@@ -957,7 +957,7 @@ public static RubyArray unpack(Ruby runtime, ByteList encodedString, ByteList fo
}
lElem[lCurByte] = (bits & 1) != 0 ? (byte)'1' : (byte)'0';
}
result.append(RubyString.newString(runtime, new ByteList(lElem, ASCIIEncoding.INSTANCE, false)));
result.append(RubyString.newString(runtime, new ByteList(lElem, USASCII, false)));
}
break;
case 'B' :

0 comments on commit af0556b

Please sign in to comment.