Skip to content

Commit

Permalink
Update JavaDoc class refs
Browse files Browse the repository at this point in the history
  • Loading branch information
huangsam committed Dec 4, 2024
1 parent c009ab4 commit 84d28f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public interface Migrator {
* <li>Record failed operations</li>
* </ul>
*
* @param photos Collection of photo records
* @param photos {@code Collection} of photo records
*/
void migratePhotos(Collection<Photo> photos);

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/huangsam/photohaul/model/Photo.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public String name() {
/**
* Get photo modified time.
*
* @return Modified time as {@link FileTime}
* @return Modified time as {@code FileTime}
*/
@Nullable
public FileTime modifiedAt() {
Expand All @@ -54,7 +54,7 @@ public FileTime modifiedAt() {
/**
* Get photo taken time, parsed from image tags.
*
* @return Taken time as {@link LocalDateTime}
* @return Taken time as {@code LocalDateTime}
*/
@Nullable
public LocalDateTime takenAt() {
Expand Down

0 comments on commit 84d28f8

Please sign in to comment.