This commit is contained in:
romanschenk37
2022-03-06 21:39:18 +00:00
committed by GitHub
@@ -138,7 +138,6 @@ public class MandelbrotCallableProcessor extends MandelbrotProcessor {
// select color based on count of iterations // select color based on count of iterations
imageRow.pixels[col] = (count != maxIterations) ? imageRow.pixels[col] = (count != maxIterations) ?
palette[count % palette.length] : Color.BLACK; palette[count % palette.length] : Color.BLACK;
} }
return imageRow; return imageRow;
} }