Skip to content

Commit

Permalink
xml output
Browse files Browse the repository at this point in the history
  • Loading branch information
ryaneberly committed Feb 8, 2014
1 parent 40c69c4 commit ad4761a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/cflint/XMLOutput.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void output(final BugList bugList, final Writer writer) throws IOExceptio
writer.append(" column=\"").append(Integer.valueOf(bugInfo.getColumn()).toString()).append("\"");
writer.append(" line=\"").append(Integer.valueOf(bugInfo.getLine()).toString()).append("\"");
writer.append(" message=\"").append(xmlEscapeText(bugInfo.getMessage())).append("\"");
writer.append(" variable=\"").append(bugInfo.getVariable()).append("\"");
writer.append(" variable=\"").append(xmlEscapeText(bugInfo.getVariable())).append("\"");
writer.append(">");
writer.append("<Expression><![CDATA[")
.append(bugInfo.getExpression() == null ? "" : bugInfo.getExpression()
Expand Down

0 comments on commit ad4761a

Please sign in to comment.