summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2016-01-21 20:43:36 +0100
committerSimon Rettberg2016-01-21 20:43:36 +0100
commit2a4c389913c6f2d68604ed20ebdf7823acbe79fd (patch)
tree2b146cc052f4bb449c7cea81d724b7faa6838743
parent[client] Hide satellite servers starting with {x} when not pressing SHIFT (diff)
downloadtutor-module-2a4c389913c6f2d68604ed20ebdf7823acbe79fd.tar.gz
tutor-module-2a4c389913c6f2d68604ed20ebdf7823acbe79fd.tar.xz
tutor-module-2a4c389913c6f2d68604ed20ebdf7823acbe79fd.zip
[client] Remove useless comments
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/thrift/cache/MetaDataCache.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/thrift/cache/MetaDataCache.java b/dozentenmodul/src/main/java/org/openslx/dozmod/thrift/cache/MetaDataCache.java
index f7ed44e3..068e077b 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/thrift/cache/MetaDataCache.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/thrift/cache/MetaDataCache.java
@@ -50,7 +50,6 @@ public class MetaDataCache {
CACHE_TIME_MS) {
@Override
protected List<Location> update() throws TException {
- // enable this code when the server call is implemented
try {
return ThriftManager.getSatClient().getLocations();
} catch (TException e) {
@@ -58,12 +57,6 @@ public class MetaDataCache {
}
// querying masterserver does not make sense for locations
return null;
-// List<Location> testLocationList = new ArrayList<Location>();
-// testLocationList.add(new Location(1, "RZ - Raum 100"));
-// testLocationList.add(new Location(2, "RZ - Raum 101"));
-// testLocationList.add(new Location(3, "RZ - Raum 113"));
-// testLocationList.add(new Location(4, "RZ - Raum 114"));
-// return testLocationList;
}
};