| 38 | if (n.key == "--black--") { |
| 39 | synchronized(black) { |
| 40 | black.rewind() |
| 41 | n.value.put(black) |
| 42 | black.rewind() |
| 43 | n.value.rewind() |
| 44 | } |
| 45 | } else { |
| 46 | Thread.currentThread().name = "decompression thread" |
| 47 | System.err.println(n.key + " " + n.value) |
| 48 | // jp.decompress(n.key, n.value, width, height) |
| 49 | FastJPEG.j.decompress(n.key, n.value, width, height) |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | override fun check(): Int { |
| 54 | val z = super.check() |
| 55 | if (z != num) { |
| 56 | // throw new |
| 57 | // IllegalArgumentException(" failed check"); |
nothing calls this directly
no test coverage detected