From 8ca49c020e89a9c2049668bdd015e6361d487e2d Mon Sep 17 00:00:00 2001 From: tdurieux Date: Tue, 7 Mar 2017 13:13:42 +0100 Subject: [PATCH] fixed files form Time #4 --- projects/Time/4/org/joda/time/Partial.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/Time/4/org/joda/time/Partial.java b/projects/Time/4/org/joda/time/Partial.java index 0d4edf4..8e8e603 100644 --- a/projects/Time/4/org/joda/time/Partial.java +++ b/projects/Time/4/org/joda/time/Partial.java @@ -461,7 +461,7 @@ public Partial with(DateTimeFieldType fieldType, int value) { System.arraycopy(iValues, i, newValues, i + 1, newValues.length - i - 1); // use public constructor to ensure full validation // this isn't overly efficient, but is safe - Partial newPartial = new Partial(iChronology, newTypes, newValues); + Partial newPartial = new Partial(newTypes, newValues, iChronology); iChronology.validate(newPartial, newValues); return newPartial; }