|
From: <ma...@us...> - 2010-03-29 16:03:00
|
Revision: 331
http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=331&view=rev
Author: marchy
Date: 2010-03-29 16:02:53 +0000 (Mon, 29 Mar 2010)
Log Message:
-----------
Feature request 2853974.
Change the visibility on JodaWorkingWeek(final byte workingDays)
constructor from private to protected.
Modified Paths:
--------------
trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/JodaWorkingWeek.java
trunk/src/changes/changes.xml
Modified: trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/JodaWorkingWeek.java
===================================================================
--- trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/JodaWorkingWeek.java 2010-03-29 16:00:20 UTC (rev 330)
+++ trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/JodaWorkingWeek.java 2010-03-29 16:02:53 UTC (rev 331)
@@ -53,7 +53,7 @@
super();
}
- private JodaWorkingWeek(final byte workingDays) {
+ protected JodaWorkingWeek(final byte workingDays) {
super(workingDays);
}
Modified: trunk/src/changes/changes.xml
===================================================================
--- trunk/src/changes/changes.xml 2010-03-29 16:00:20 UTC (rev 330)
+++ trunk/src/changes/changes.xml 2010-03-29 16:02:53 UTC (rev 331)
@@ -7,6 +7,7 @@
</properties>
<body>
<release version="1.2.0" date="in SVN" description="Maintenance">
+ <action dev="marchy" type="add" issue="atid=872036&aid=2853974" due-to="insumo">Changed the visibility on JodaWorkingWeek(final byte workingDays) constructor from private to protected.</action>
<action dev="marchy" type="fix" issue="atid=872033&aid=2963607" due-to="Aldo Tamburini">Fixed DefaultHolidayCalendar when used with java.util.Date / java.util.Calendar holidays.</action>
<action dev="benoitx" type="fix">Removed the deprecated constructors that used to take Set of "Date", use the HolidayCalendar.</action>
<action dev="benoitx" type="fix">Removed the deprecated method DateCalculator.setNonWorkingDays and getNonWorkingDays.</action>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|