Beispiel #1
0
 /**
  * Strip color from message.
  *
  * <p>This will remove any sort of color codes from the string.
  *
  * <p>Uses {@link Str#stripColor(String)}
  *
  * @return This msg instance.
  */
 public Msg stripClr() {
   message = Str.stripColor(message);
   return this;
 }