Vasily Efimov

Results 2 issues of Vasily Efimov

For some images palette may contain invalid colors with component values > 255 Example image: ![260x260](https://user-images.githubusercontent.com/7975352/104198447-4acfd100-5437-11eb-9858-e79eef04aef1.jpeg) ```java BufferedImage img = ImageIO.read(new File("260x260.jpeg")); int[][] palette = ColorThief.getPalette(img, 10); palette[9][1] == 256;...

In `KafkaCOnsumerObservableManualCommit.scala:56` there's incorrect implementation of async commit ```scala override def commitBatchAsync(batch: Map[TopicPartition, Long], callback: OffsetCommitCallback): Task[Unit] = Task { blocking(consumer.synchronized(consumer.commitAsync(batch.map { case (k, v) => k -> new OffsetAndMetadata(v)...

bug
good first issue