diff options
author | Jonas Smedegaard <dr@jones.dk> | 2025-04-29 16:00:15 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2025-04-29 16:31:45 +0200 |
commit | 7d87052d950629f429a1a0c0ca8afad7700e9d54 (patch) | |
tree | 32943b437a450a61ad8e6dc3f3e2262c4f384f0e | |
parent | 33f6840bdf0db18fd346dbbc502fb5b10fdb5adf (diff) |
fix javadoc comment
-rw-r--r-- | src/com.example.portfolio2/com/example/portfolio2/Database.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com.example.portfolio2/com/example/portfolio2/Database.java b/src/com.example.portfolio2/com/example/portfolio2/Database.java index 84980d1..85b2b09 100644 --- a/src/com.example.portfolio2/com/example/portfolio2/Database.java +++ b/src/com.example.portfolio2/com/example/portfolio2/Database.java @@ -102,9 +102,9 @@ class Database { return result.getFirst(); } - /// sum of ECTS points under the given category + /// list of available activities /// - /// @return names of all activities as list of String + /// @return names of all activities as list of strings ArrayList<String> getAllActivities() { return db.query("select name from activity;", "name"); } |