summaryrefslogtreecommitdiff
path: root/src/com.example.portfolio2/com/example/portfolio2/UI.java
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2025-04-30 18:21:47 +0200
committerJonas Smedegaard <dr@jones.dk>2025-04-30 18:22:57 +0200
commitfd9a8fc42ec3328f8f5bce7cda08faceff94fc0c (patch)
tree0505da8aaece8af8ccc5b554756bf968d07fb326 /src/com.example.portfolio2/com/example/portfolio2/UI.java
parent9537bb268911153d335eed865a48a8f8d30c42b1 (diff)
mark class parameters as final
Diffstat (limited to 'src/com.example.portfolio2/com/example/portfolio2/UI.java')
-rw-r--r--src/com.example.portfolio2/com/example/portfolio2/UI.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com.example.portfolio2/com/example/portfolio2/UI.java b/src/com.example.portfolio2/com/example/portfolio2/UI.java
index 6f2c1ec..8a71e43 100644
--- a/src/com.example.portfolio2/com/example/portfolio2/UI.java
+++ b/src/com.example.portfolio2/com/example/portfolio2/UI.java
@@ -31,7 +31,7 @@ public abstract class UI {
/// instantiation
///
/// @param label text label
- private Section(String label) {
+ private Section(final String label) {
this.label = label;
}
}