ExportJob.java:
In exportContainer(), avoid uselessly creating a byte array.
| | |
| | | { |
| | | logger.traceException(e); |
| | | |
| | | logger.trace("Malformed id2entry ID %s.%n", |
| | | StaticUtils.bytesToHex(key.toByteArray())); |
| | | logger.trace("Malformed id2entry ID %s.%n", StaticUtils.bytesToHex(key)); |
| | | } |
| | | skippedCount++; |
| | | continue; |
| | |
| | | logger.traceException(e); |
| | | |
| | | logger.trace("Malformed id2entry record for ID %d:%n%s%n", |
| | | entryID.longValue(), |
| | | StaticUtils.bytesToHex(value.toByteArray())); |
| | | entryID, StaticUtils.bytesToHex(value)); |
| | | } |
| | | skippedCount++; |
| | | continue; |