Skip to content

Commit

Permalink
Merge branch 'jruby-9.1'
Browse files Browse the repository at this point in the history
enebo committed Feb 24, 2018

Verified

This commit was signed with the committer’s verified signature.
headius Charles Oliver Nutter
2 parents d532366 + b8e7856 commit d81acb8
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion core/src/main/java/org/jruby/lexer/yacc/StringTerm.java
Original file line number Diff line number Diff line change
@@ -87,7 +87,6 @@ private int endFound(RubyLexer lexer) throws IOException {
}

lexer.setValue("" + end);

return RubyParser.tSTRING_END;
}

2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/util/cli/Options.java
Original file line number Diff line number Diff line change
@@ -245,7 +245,7 @@ public static String dump() {

// Most (all?) OpenJDK default this to false. See jruby/jruby#4869
@Deprecated
public static final Option<Boolean> PREFER_IPV4 = bool(MISCELLANEOUS, "net.preferIPv4", SafePropertyAccessor.getBoolean("java.net.preferIPv4Stack", false), "(DEPRECATED) Prefer IPv4 network stack");
public static final Option<Boolean> PREFER_IPV4 = bool(MISCELLANEOUS, "net.preferIPv4", false, "(DEPRECATED) Prefer IPv4 network stack");

private static Option<String> string(Category category, String name, String[] options, String defval, String description) {
Option<String> option = Option.string("jruby", name, category, options, defval, description);

0 comments on commit d81acb8

Please sign in to comment.