1
0
mirror of https://github.com/TeamNewPipe/NewPipeExtractor synced 2025-10-05 16:12:47 +02:00

[Localization] Add toString to DateWrapper for better debugging

This commit is contained in:
David Asunmo
2025-06-07 08:22:55 +01:00
committed by Stypox
parent 41b77ef2ac
commit 8114af4c01

View File

@@ -69,4 +69,12 @@ public class DateWrapper implements Serializable {
public boolean isApproximation() {
return isApproximation;
}
@Override
public String toString() {
return "DateWrapper{"
+ "offsetDateTime=" + offsetDateTime
+ ", isApproximation=" + isApproximation
+ '}';
}
}