Skip to content

Commit

Permalink
Fix compilation error.
Browse files Browse the repository at this point in the history
  • Loading branch information
headius committed Oct 10, 2013
1 parent a2f302f commit fa3b8fc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/src/main/java/org/jruby/util/io/CRLFStreamWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ public void clearerr() {
public ModeFlags getModes() {
return stream.getModes();
}

public void setModes(ModeFlags modes) {
stream.setModes(modes);
}

public boolean isSync() {
return stream.isSync();
Expand Down

0 comments on commit fa3b8fc

Please sign in to comment.