Skip to content

Commit 785a368

Browse files
committed
Fix indentation
1 parent 9f11cbb commit 785a368

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/java/org/jruby/ext/stringio/StringIO.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ private IRubyObject getline(ThreadContext context, final IRubyObject rs, int lim
685685
w = (chomp ? 1 : 0);
686686
break;
687687
}
688-
else if (stringBytes[p] == '\r' && p < e && stringBytes[p + 1] == '\n') {
688+
else if (stringBytes[p] == '\r' && p < e && stringBytes[p + 1] == '\n') {
689689
e = p + 2;
690690
w = (chomp ? 2 : 0);
691691
break;

0 commit comments

Comments
 (0)