This commit is contained in:
romanschenk37 2022-03-06 21:39:18 +00:00 committed by GitHub
commit fe55305443
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -138,7 +138,6 @@ public class MandelbrotCallableProcessor extends MandelbrotProcessor {
// select color based on count of iterations
imageRow.pixels[col] = (count != maxIterations) ?
palette[count % palette.length] : Color.BLACK;
}
return imageRow;
}