diff options
author | Jonas Smedegaard <dr@jones.dk> | 2025-04-30 18:27:32 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2025-04-30 18:30:53 +0200 |
commit | 6893df75966fc6623a4ad2f8e3a78f5b194482ef (patch) | |
tree | 4f9b77d7d6c040ced7500f09d5847aa4cf3bd83e /src/com.example.portfolio2/com/example/portfolio2/GUI.java | |
parent | b2134200f39d714f84e2998c815ddafd8418e503 (diff) |
drop redundant public/private modifiers
Diffstat (limited to 'src/com.example.portfolio2/com/example/portfolio2/GUI.java')
-rw-r--r-- | src/com.example.portfolio2/com/example/portfolio2/GUI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com.example.portfolio2/com/example/portfolio2/GUI.java b/src/com.example.portfolio2/com/example/portfolio2/GUI.java index 95df60c..daf680e 100644 --- a/src/com.example.portfolio2/com/example/portfolio2/GUI.java +++ b/src/com.example.portfolio2/com/example/portfolio2/GUI.java @@ -35,7 +35,7 @@ public class GUI extends UI { /// /// @param label text label /// @param column column position - private Section(final String label, final int column) { + Section(final String label, final int column) { this.label = label; this.column = column; } |