Project

General

Profile

« Previous | Next » 

Revision 48864

- Request save/update bug fix ( saveOrupdate -> merge )

View differences:

ProjectEligibiliyManager.java
87 87
			return new Eligibility(Eligibility.Status.NONO, stillRunningNono);
88 88
		} else if (enddate.after(new Date(System.currentTimeMillis() - expirationOk * 1000L * 60 * 60 * 24 * 30))) {
89 89
			return Eligibility.OK;
90
		} else if (enddate.after(new Date((long) (System.currentTimeMillis() - (1.0f + expirationThreshold) * expirationOk* 1000L * 60 * 60 * 24 * 30)))) {
90
		} else if (enddate.after(new Date((long) (System.currentTimeMillis() - (1.0f + expirationThreshold) * expirationOk * 1000L * 60 * 60 * 24 * 30)))) {
91 91
			return new Eligibility(Eligibility.Status.IFFY, expirationIffy);
92 92
		} else {
93 93
			return new Eligibility(Eligibility.Status.NONO, expirationNono);

Also available in: Unified diff