summaryrefslogtreecommitdiffstats
path: root/dozentenmodulserver
diff options
context:
space:
mode:
authorSimon Rettberg2022-11-07 16:21:04 +0100
committerSimon Rettberg2022-11-07 16:21:04 +0100
commit3fab9f6f1b8c0ca9b13721c55cf990cbeeed4319 (patch)
tree4f4e3880d30f5cd08283efecf996135773af0fe4 /dozentenmodulserver
parent[client] Ignore VM size limit if user is super user (diff)
downloadtutor-module-3fab9f6f1b8c0ca9b13721c55cf990cbeeed4319.tar.gz
tutor-module-3fab9f6f1b8c0ca9b13721c55cf990cbeeed4319.tar.xz
tutor-module-3fab9f6f1b8c0ca9b13721c55cf990cbeeed4319.zip
[server] Remove unused throws annotation
Diffstat (limited to 'dozentenmodulserver')
-rw-r--r--dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/thrift/cache/OrganizationList.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/thrift/cache/OrganizationList.java b/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/thrift/cache/OrganizationList.java
index 9e8ccaf9..e5415498 100644
--- a/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/thrift/cache/OrganizationList.java
+++ b/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/thrift/cache/OrganizationList.java
@@ -28,7 +28,7 @@ public class OrganizationList extends CacheBase<List<Organization>> {
}
@Override
- protected List<Organization> getCallback() throws TException {
+ protected List<Organization> getCallback() {
final List<Organization> organizations;
try {
organizations = ThriftManager.getMasterClient().getOrganizations();