convertByteToMb static method

double convertByteToMb(
  1. int byte
)

Implementation

static double convertByteToMb(int byte) {
  return byte / 1000000.0;
}