From 4731166fba5a007dd5d62ab020e725d5e5706426 Mon Sep 17 00:00:00 2001 From: sowgro Date: Sat, 15 Feb 2025 15:19:20 -0500 Subject: Make stuff final --- ufund-api/src/main/java/com/ufund/api/ufundapi/Need.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ufund-api/src/main/java/com/ufund/api/ufundapi/Need.java b/ufund-api/src/main/java/com/ufund/api/ufundapi/Need.java index 198b3a3..f6ef720 100644 --- a/ufund-api/src/main/java/com/ufund/api/ufundapi/Need.java +++ b/ufund-api/src/main/java/com/ufund/api/ufundapi/Need.java @@ -8,9 +8,9 @@ public class Need { } private String name; - private int id; + final private int id; private String[] filterAttributes; - private GoalType type; + final private GoalType type; private double maxGoal; private double current; -- cgit v1.2.3