We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe31a90 commit 9cf9e7eCopy full SHA for 9cf9e7e
1 file changed
extractor/src/main/java/org/schabi/newpipe/extractor/localization/DateWrapper.java
@@ -28,8 +28,7 @@ public DateWrapper(@NonNull Calendar calendar) {
28
*/
29
@Deprecated
30
public DateWrapper(@NonNull Calendar calendar, boolean isApproximation) {
31
- offsetDateTime = OffsetDateTime.ofInstant(calendar.toInstant(), ZoneOffset.UTC);
32
- this.isApproximation = isApproximation;
+ this(OffsetDateTime.ofInstant(calendar.toInstant(), ZoneOffset.UTC), isApproximation);
33
}
34
35
public DateWrapper(@NonNull OffsetDateTime offsetDateTime) {
0 commit comments