max static method

Implementation

static Breakpoint max(Breakpoint a, Breakpoint b) {
  if (a > b) return a;
  return b;
}