src/com/gitblit/utils/PatchFormatter.java
@@ -30,6 +30,12 @@ import com.gitblit.Constants; /** * A diff formatter that outputs standard patch content. * * @author James Moger * */ public class PatchFormatter extends DiffFormatter { private final OutputStream os; @@ -109,6 +115,10 @@ return patch.toString(); } /** * Class that represents the number of insertions and deletions from a * chunk. */ private static class PatchTouple { int insertions; int deletions;