convertKbToMb static method

double convertKbToMb(
  1. int byte
)

Implementation

static double convertKbToMb(int byte) {
  return byte / 1000.0;
}