Skip to content

Commit

Permalink
One of the Java 5 method overrides wasn't commented out, and its retu…
Browse files Browse the repository at this point in the history
…rn value conflicts with Appendable. This could cause problems.
  • Loading branch information
ddekany committed Jun 27, 2013
1 parent fdda30c commit ddff5e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/freemarker/template/utility/NullWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ public Writer append(CharSequence csq, int start, int end) throws IOException {
// Do nothing
return this;
}
*/
public Writer append(char c) throws IOException {
// Do nothing
return this;
}
*/

}

0 comments on commit ddff5e0

Please sign in to comment.