Skip to content

Commit

Permalink
refactor: remove primitive wrapper constructor
Browse files Browse the repository at this point in the history
Fix #1558
  • Loading branch information
rdeltour committed Dec 26, 2024
1 parent d28e20f commit eb0cb77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/adobe/epubcheck/overlay/ClipTime.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public ClipTime() {
}

public ClipTime(double timeInMs) {
this.timeInMs = new Double(timeInMs);
this.timeInMs = timeInMs;
}

public double getTimeInMs() {
Expand Down

0 comments on commit eb0cb77

Please sign in to comment.