public int translateLineViaDiffStrict(int line) throws FilesTooBigForDiffException {
   if (myChange == null) buildDiff();
   Diff.Change change = myChange;
   if (change == null) return line;
   return Diff.translateLine(change, line);
 }