rename to ConsoleTable

This commit is contained in:
Looly 2020-09-30 01:47:48 +08:00
parent 61439c9138
commit 17cacc4a03

View File

@ -522,8 +522,9 @@ public class RandomUtil {
*
* @return 随机颜色
* @since 4.1.5
* @deprecated 使用{@link ImgUtil#randomColor()}
* @deprecated 使用ImgUtil.randomColor()
*/
@Deprecated
public static Color randomColor() {
final Random random = getRandom();
return new Color(random.nextInt(256), random.nextInt(256), random.nextInt(256));