Skip to content

Commit

Permalink
Updated Organization
Browse files Browse the repository at this point in the history
Changed parameters to private immutable parameters.
  • Loading branch information
roaraf committed Feb 26, 2026
1 parent 9121be5 commit 13c07ea
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package ntnu.sytemutvikling.team6.models;

public class Organization {
String name;
String telephone;
String location;
String status;
private final String name;
private final String telephone;
private final String location;
private final String status;

public Organization(String name, String telephone, String location, String status) {
this.name = name;
Expand Down

0 comments on commit 13c07ea

Please sign in to comment.