Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Dominikus Herzberg
JavaAufgaben
Commits
ac92f6ef
Commit
ac92f6ef
authored
Dec 12, 2017
by
Christopher Schölzel
🐃
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
return values where swapped (thx P. Ritzke)
parent
a694a8ba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
code/7/roles_solution.java
code/7/roles_solution.java
+2
-2
No files found.
code/7/roles_solution.java
View file @
ac92f6ef
...
...
@@ -32,9 +32,9 @@ class UserEnum {
boolean
canUploadFiles
()
{
switch
(
access
)
{
case
GUEST:
return
true
;
default
:
return
false
;
default
:
return
true
;
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment