diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-03-26 19:00:04 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-03-26 19:00:04 -0400 |
commit | 5dfb1327c4507ae1613debb5b485fd74edff33db (patch) | |
tree | 2c2c8e699bd62686120e4be84a25c20c37004551 /ufund-api/src/main/java/com/ufund/api/ufundapi/model | |
parent | ab35efb06b926e8a3aee5cfc8d1fa908aa4a4707 (diff) | |
download | JellySolutions-5dfb1327c4507ae1613debb5b485fd74edff33db.tar.gz JellySolutions-5dfb1327c4507ae1613debb5b485fd74edff33db.tar.bz2 JellySolutions-5dfb1327c4507ae1613debb5b485fd74edff33db.zip |
fix expiration logic and cleanup
Diffstat (limited to 'ufund-api/src/main/java/com/ufund/api/ufundapi/model')
-rw-r--r-- | ufund-api/src/main/java/com/ufund/api/ufundapi/model/Need.java | 2 |
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 786b104..22e86e3 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) { // TODO why is this needed + public Need(String name, GoalType type, double maxGoal) { this.name = name; this.type = type; this.maxGoal = maxGoal; |