James Moger
2011-04-18 9bc17d16ea48a7978b198126d346828b1d24fe4e
src/com/gitblit/utils/HtmlDiffFormatter.java
@@ -10,7 +10,7 @@
import org.eclipse.jgit.diff.RawText;
public class HtmlDiffFormatter extends DiffFormatter {
   private final OutputStream os;
   public HtmlDiffFormatter(OutputStream os) {
@@ -91,7 +91,7 @@
      ByteArrayOutputStream bos = new ByteArrayOutputStream();
      text.writeLine(bos, cur);
      String line = bos.toString();
      line = Utils.escapeForHtml(line, false);
      line = StringUtils.escapeForHtml(line, false);
      os.write(line.getBytes());
      switch (prefix) {
      case '+':