delMatchers static method

void delMatchers(
  1. String key
)

删除自定添加的格式化参数

key 参数key值 自己在addMatchers时添加的

Implementation

static void delMatchers(String key) {
  if (_matcherstatic.containsKey(key)) {
    _matcherstatic.remove(key);
  }
}