Skip to content

Commit 3998730

Browse files
committed
Fix getLocalDateInFuture using incorrect year
1 parent 8baf0ae commit 3998730

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db-jdbc-orm/src/main/java/software/xdev/tci/db/datageneration/BaseDBDataGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@ public LocalDate getLocalDateInPast()
7878
@SuppressWarnings("checkstyle:MagicNumber")
7979
public LocalDate getLocalDateInFuture()
8080
{
81-
return LocalDate.of(3000, 1, 1).plusYears(1);
81+
return LocalDate.of(3000, 1, 1);
8282
}
8383
}

0 commit comments

Comments
 (0)