Skip to content

Commit

Permalink
Fix invalid XML when border element color is set
Browse files Browse the repository at this point in the history
  • Loading branch information
Olivier Chédru committed Mar 18, 2016
1 parent d5fa0c6 commit df2b985
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/dhatim/fastexcel/BorderElement.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ void write(String name, Writer w) throws IOException {
}
w.append('>');
if (rgbColor != null) {
w.append("<color rgb=\"").append(rgbColor).append("/>");
w.append("<color rgb=\"").append(rgbColor).append("\"/>");
}
w.append("</").append(name).append(">");
}
Expand Down

0 comments on commit df2b985

Please sign in to comment.