The following document contains the results of PMD's CPD 5.5.1.
File | Line |
---|---|
org/eclipse/jgit/archive/Tbz2Format.java | 82 |
org/eclipse/jgit/archive/TgzFormat.java | 82 |
org/eclipse/jgit/archive/TxzFormat.java | 82 |
BZip2CompressorOutputStream out = new BZip2CompressorOutputStream(s); return tarFormat.createArchiveOutputStream(out, o); } @Deprecated @Override public void putEntry(ArchiveOutputStream out, String path, FileMode mode, ObjectLoader loader) throws IOException { putEntry(out, null, path, mode,loader); } /** * @since 4.7 */ @Override public void putEntry(ArchiveOutputStream out, ObjectId tree, String path, FileMode mode, ObjectLoader loader) throws IOException { tarFormat.putEntry(out, tree, path, mode, loader); } @Override public Iterable<String> suffixes() { return SUFFIXES; } @Override public boolean equals(Object other) { return (other instanceof Tbz2Format); |