Skip to content

Commit 41cf473

Browse files
committed
Fixing date field
1 parent 11d92b1 commit 41cf473

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/net/authorize/sample/RecurringBilling/CreateSubscription.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ public static ANetApiResponse run(String apiLoginId, String transactionKey, shor
4141
try {
4242
XMLGregorianCalendar startDate = DatatypeFactory.newInstance().newXMLGregorianCalendar();
4343
startDate.setDay(30);
44-
startDate.setMonth(8);
44+
startDate.setMonth(12);
4545
startDate.setYear(2020);
46-
schedule.setStartDate(startDate); //2020-08-30
46+
schedule.setStartDate(startDate); //2020-12-30
4747
}
4848
catch(Exception e) {
4949

0 commit comments

Comments
 (0)