Files
Stirling-PDF/scripts/lint/fixtures/deadcode.java
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
294 B
Java
Raw Normal View History

package fixtures;
class DeadCode {
// private void oldPath(PDDocument document) {
// PDPage page = document.getPage(0);
// page.setRotation(90);
// document.save(target);
// }
void currentPath(PDDocument document) {
document.save(target);
}
}