Skip to content

Commit

Permalink
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -24,6 +24,7 @@ private static String doGetMessage(Throwable cause) {
return cause.getMessage();
}

@SuppressWarnings("sync-override")
@Override
public final Throwable fillInStackTrace() {
return null;
Original file line number Diff line number Diff line change
@@ -369,7 +369,7 @@ public int parseStringIntoBuffer(RubyLexer lexer, ByteList buffer, Encoding enc[
/* ignore backslashed spaces in %w */
} else if (c != end && !(begin != '\0' && c == begin)) {
buffer.append('\\');
lexer.pushback(c);;
lexer.pushback(c);
continue;
}
}

0 comments on commit c583ea3

Please sign in to comment.