Other fields in this class are initialized in their declaration, make
the code consistent with itself and use only one style.
Change-Id: I49a007e97ba52faa6b89f7e4b1eec85dccac0fa4
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
private Repository db;
- private int context;
+ private int context = 3;
- private int abbreviationLength;
+ private int abbreviationLength = 7;
private RawText.Factory rawTextFactory = RawText.FACTORY;
*/
public DiffFormatter(OutputStream out) {
this.out = out;
- setContext(3);
- setAbbreviationLength(7);
}
/** @return the stream we are outputting data to. */