Skip to content

Commit

Permalink
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -17,10 +17,10 @@
import org.jruby.util.StringSupport;

public enum CodeRange {
CR_UNKNOWN(0),
CR_7BIT(16),
CR_VALID(32),
CR_BROKEN(48);
CR_UNKNOWN(StringSupport.CR_UNKNOWN),
CR_7BIT(StringSupport.CR_7BIT),
CR_VALID(StringSupport.CR_VALID),
CR_BROKEN(StringSupport.CR_BROKEN);

private final int jrubyValue;

0 comments on commit 6566953

Please sign in to comment.