sumScale static method

int sumScale(
  1. int scaleA,
  2. int scaleB
)

Implementation

static int sumScale(int scaleA, int scaleB) {
  // TODO: We need to check for overflows here
  return scaleA + scaleB;
}