Skip to content
This repository has been archived by the owner on May 31, 2023. It is now read-only.

Commit

Permalink
Remove usused method
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesMcIntosh committed Nov 12, 2022
1 parent fe8bd0d commit 5500133
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -236,11 +236,6 @@ private void setIfNotNull(ExifInterface oldExif, ExifInterface newExif, String p
}
}

private static String pathComponent(String filename) {
int i = filename.lastIndexOf(File.separator);
return (i > -1) ? filename.substring(0, i) : filename;
}

private static String getFilenameWithoutExtension(File file) {
String fileName = file.getName();

Expand Down

0 comments on commit 5500133

Please sign in to comment.