removed old commented code

This commit is contained in:
cola98765
2021-10-03 09:42:50 +02:00
parent cc52815315
commit f72c846fe5
@@ -172,8 +172,6 @@ public class DataPointUtil
public static int getColor(long dataPoint)
{
//int color = getBlue(dataPoint) << BLUE_COLOR_SHIFT;
//color += getRed(dataPoint) << BLUE_COLOR_SHIFT;
return (int) (((dataPoint >>> COLOR_SHIFT) & COLOR_MASK) | (((dataPoint >>> (ALPHA_SHIFT - ALPHA_DOWNSIZE_SHIFT)) | 0b1111) << 24));
}