From ed098513f5079dc8e9162a6132d9d4716dd938e3 Mon Sep 17 00:00:00 2001 From: Teriuihi Date: Sat, 10 Aug 2024 04:24:08 +0200 Subject: [PATCH] Change fields from final to mutable in form classes Refactored `StaffAppFormData` and `ContactFormData` to allow updating fields by removing the `final` modifier. Added default constructors to both classes for easier instantiation and management. This change improves the flexibility and maintainability of the codebase. --- .idea/workspace.xml | 9 ++---- .../controlers/apply/StaffAppFormData.java | 32 ++++++++++--------- .../controlers/contact/ContactFormData.java | 8 +++-- 3 files changed, 25 insertions(+), 24 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 2d4135e..f41ce3c 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,11 +4,8 @@