We dont use javadoc & format fixes

This commit is contained in:
Seth
2020-08-01 17:46:14 -07:00
parent 76bb2d08ac
commit a0b29c1d01
5 changed files with 40 additions and 86 deletions

View File

@ -782,13 +782,6 @@ public class FUtil
return colors;
}
/**
* Detects if two colors are alike.
* @param first The first Color to check.
* @param second The second Color to check.
* @param tresHold The maximum allowed difference between the colors.
* @return Returns true if the colors are alike.
*/
public static boolean colorClose(Color first, Color second, int tresHold)
{
int redDelta = Math.abs(first.getRed() - second.getRed());