clearInterfaceName method

String clearInterfaceName()

clears prefix I from interfaces

Implementation

String clearInterfaceName() {
  if (this[0] == "I" || this[0] == "i") {
    return substring(1);
  }

  return this;
}