Skip to content

Commit

Permalink
edit comment to match constructor args for SubmittedProposal
Browse files Browse the repository at this point in the history
  • Loading branch information
DJWalker42 committed Oct 28, 2024
1 parent 0571a87 commit b5d106e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public ProposalSynopsis submitProposal(@PathParam("cycleCode") long cycleId, Sub
pclone.updateClonedReferences();// TODO API subject to change
pclone.setSubmitted(true);
em.persist(pclone);
//constructor args.:(submission date, config, successful, reviews-complete-date, reviews, the-proposal)
//constructor args.:(the-proposal, config, submission date, successful, reviews-complete-date, reviews)
//FIXME need to gather the config

SubmittedProposal submittedProposal = new SubmittedProposal(pclone, configMappings, new Date(), false, new Date(0L), null );
Expand Down

0 comments on commit b5d106e

Please sign in to comment.