mirror of
https://git.code.sf.net/p/projectlibre/code
synced 2024-11-01 03:21:46 +01:00
applying patch from rucoder
This commit is contained in:
parent
cf35d8e25c
commit
4c8cb45534
1 changed files with 2 additions and 1 deletions
|
@ -166,7 +166,8 @@ public class ModifiedMSPDIWriter extends MSPDIWriter {
|
|||
it would be a pain to setup the development environment to build this... so we will hack this for now
|
||||
--TAF2009-07-29
|
||||
*/
|
||||
if (Double.isNaN(mpx.getFixedCost().doubleValue()))
|
||||
Number fixedCost = mpx.getFixedCost();
|
||||
if (fixedCost == null || Double.isNaN(fixedCost.doubleValue()))
|
||||
mpx.setFixedCost(null);
|
||||
|
||||
Project.Tasks.Task xml = super.writeTask(mpx);
|
||||
|
|
Loading…
Reference in a new issue