getClassName static method

String getClassName(
  1. String mid
)

Implementation

static String getClassName(String mid) {
  int pos = mid.indexOf('=');
  if (pos > 0 && pos < mid.length - 1) return mid.substring(0, pos);
  return mid;
}