aboutsummaryrefslogtreecommitdiff
path: root/ufund-api/src/main/java/com/ufund/api/ufundapi/model/Need.java
diff options
context:
space:
mode:
authorGunther6070 <haydenhartman10@yahoo.com>2025-03-25 08:21:01 -0400
committerGunther6070 <haydenhartman10@yahoo.com>2025-03-25 08:21:01 -0400
commitffbe2870d320c4127d32307f2646f39e2e284eec (patch)
treef9f46447c689c1667f04f17bfbf2e8d07ff0fcd0 /ufund-api/src/main/java/com/ufund/api/ufundapi/model/Need.java
parentd31c1aec7f615646553a227c8e235d4ae2679c68 (diff)
parentc15aa3daab0cf9a640945d4e634d1327fb55d2db (diff)
downloadJellySolutions-ffbe2870d320c4127d32307f2646f39e2e284eec.tar.gz
JellySolutions-ffbe2870d320c4127d32307f2646f39e2e284eec.tar.bz2
JellySolutions-ffbe2870d320c4127d32307f2646f39e2e284eec.zip
Merge branch 'api-cleanup' of https://github.com/RIT-SWEN-261-02/team-project-2245-swen-261-02-2b into api-cleanup
Diffstat (limited to 'ufund-api/src/main/java/com/ufund/api/ufundapi/model/Need.java')
-rw-r--r--ufund-api/src/main/java/com/ufund/api/ufundapi/model/Need.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/ufund-api/src/main/java/com/ufund/api/ufundapi/model/Need.java b/ufund-api/src/main/java/com/ufund/api/ufundapi/model/Need.java
index 22e86e3..786b104 100644
--- a/ufund-api/src/main/java/com/ufund/api/ufundapi/model/Need.java
+++ b/ufund-api/src/main/java/com/ufund/api/ufundapi/model/Need.java
@@ -38,7 +38,7 @@ public class Need {
* @param maxGoal The maximum goal for this need
* @param type The type of need (monetary, physical)
*/
- public Need(String name, GoalType type, double maxGoal) {
+ public Need(String name, GoalType type, double maxGoal) { // TODO why is this needed
this.name = name;
this.type = type;
this.maxGoal = maxGoal;