denamespace method

String denamespace()

Implementation

String denamespace() {
  // need to re-join with : in case there were other :s in the text
  return (split(':')..removeAt(0)).join(':');
}