Skip to content

Commit

Permalink
Fix: Unused Variable in Constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianBalunan committed Mar 11, 2026
1 parent f4fc2ba commit 7430108
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public Charity(String org_number, String name, String description, String catego
*
*/
public Charity(String org_number, String name, String category, boolean is_pre_approved, String status) {
public Charity(String org_number, String name, boolean is_pre_approved, String status) {
this.org_number = org_number.replaceAll("\\s", "");
this.name = name;
this.description = "";
Expand Down

0 comments on commit 7430108

Please sign in to comment.