Skip to content

Commit

Permalink
Remove garbage "}"
Browse files Browse the repository at this point in the history
  • Loading branch information
kou authored Sep 25, 2024
1 parent 508d955 commit 90809e9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ext/java/org/jruby/ext/stringio/StringIO.java
Original file line number Diff line number Diff line change
Expand Up @@ -1694,7 +1694,6 @@ private static Encoding detectBOM(ThreadContext context, RubyString str, ObjectO
if (toUnsignedInt(bytes[p + 1]) == 0xBB && toUnsignedInt(bytes[p + 2]) == 0xBF) {
return callback.apply(context, UTF8Encoding.INSTANCE, 3);
}
}
break;

case 0xFE:
Expand Down

0 comments on commit 90809e9

Please sign in to comment.