Skip to content

Commit

Permalink
Add NotNull to target methods
Browse files Browse the repository at this point in the history
  • Loading branch information
huangsam committed Dec 17, 2024
1 parent 2772d59 commit 89f0129
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public long getFailureCount() {
return failureCount;
}

@NotNull
private String getTargetPath(Photo photo) {
try {
return targetRoot + "/" + photoResolver.resolveString(photo);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ public final long getFailureCount() {
return failureCount;
}

@NotNull
private Path getTargetPath(Photo photo) {
try {
return targetRoot.resolve(photoResolver.resolveString(photo));
Expand Down

0 comments on commit 89f0129

Please sign in to comment.