Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
JavaAufgaben
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
Benjamin Keplin
JavaAufgaben
Commits
ac92f6ef
Commit
ac92f6ef
authored
7 years ago
by
Christopher Schölzel
Browse files
Options
Downloads
Patches
Plain Diff
return values where swapped (thx P. Ritzke)
parent
a694a8ba
Branches
dev-cs-corr
Branches containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/7/roles_solution.java
+2
-2
2 additions, 2 deletions
code/7/roles_solution.java
with
2 additions
and
2 deletions
code/7/roles_solution.java
+
2
−
2
View file @
ac92f6ef
...
...
@@ -32,9 +32,9 @@ class UserEnum {
boolean
canUploadFiles
()
{
switch
(
access
)
{
case
GUEST:
return
true
;
default
:
return
false
;
default
:
return
true
;
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment