Unnecessary use of deprecated wrapper #1558
Labels
status: has PR
The issue is being processed in a pull request
type: improvement
The issue suggests an improvement of an existing feature
Milestone
epubcheck/src/main/java/com/adobe/epubcheck/overlay/ClipTime.java
Line 19 in 55aad60
This is calling new Double(...) on a double and assigning it to a Double, which should no longer be necessary (auto unboxing will handle the conversion). This can now become a simple assignment:
Wrapper classes were deprecated in JDK 9 and are schedule to be deleted eventually.
The text was updated successfully, but these errors were encountered: