Skip to content
Snippets Groups Projects
Commit ac92f6ef authored by Christopher Schölzel's avatar Christopher Schölzel :water_buffalo:
Browse files

return values where swapped (thx P. Ritzke)

parent a694a8ba
Branches dev-cs-corr
No related merge requests found
......@@ -32,9 +32,9 @@ class UserEnum {
boolean canUploadFiles() {
switch(access) {
case GUEST:
return true;
default:
return false;
default:
return true;
}
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment