*/
public static IHunk createHunk(int start, String[] lines) {
int type = getHunkType(lines);
int oldLength = getHunkLength(lines, true);
int newLength = getHunkLength(lines, false);
return new Hunk(null, type, start, oldLength, start, newLength, lines);
}