Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OLAT CI-CD Testing Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lars Oliver Dam
OLAT CI-CD Testing Project
Commits
a9efa7f6
Commit
a9efa7f6
authored
9 years ago
by
srosse
Browse files
Options
Downloads
Plain Diff
Merge OpenOLAT 10.2 to OpenOLAT default branch with b31a98ae96711925ecc24929df28ddcb061ce96d
parents
665337bc
ffc845db
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/bps/course/nodes/den/DENManager.java
+6
-10
6 additions, 10 deletions
src/main/java/de/bps/course/nodes/den/DENManager.java
with
6 additions
and
10 deletions
src/main/java/de/bps/course/nodes/den/DENManager.java
+
6
−
10
View file @
a9efa7f6
...
@@ -199,21 +199,17 @@ public class DENManager {
...
@@ -199,21 +199,17 @@ public class DENManager {
//cancel enroll in calendar entry
//cancel enroll in calendar entry
if
(
event
.
getParticipants
()
!=
null
)
{
if
(
event
.
getParticipants
()
!=
null
)
{
int
currLength
=
event
.
getParticipants
().
length
;
int
currLength
=
event
.
getParticipants
().
length
;
if
(
currLength
>
1
)
{
if
(
currLength
>
0
)
{
//more than one are enrolled
//more than one are enrolled
String
[]
partsNew
=
new
String
[
currLength
-
1
]
;
//one to delete
List
<
String
>
partsNew
=
new
ArrayList
<>(
currLength
)
;
//one to delete
String
[]
partsOld
=
event
.
getParticipants
();
String
[]
partsOld
=
event
.
getParticipants
();
String
identityName
=
identity
.
getName
();
String
identityName
=
identity
.
getName
();
for
(
int
i
=
0
,
j
=
0
;
i
<
partsOld
.
length
;
i
++)
{
for
(
String
partOld:
partsOld
)
{
if
(
!(
partsOld
[
i
].
equals
(
identityName
))
)
{
if
(!
partOld
.
equals
(
identityName
))
{
partsNew
[
j
]
=
partsOld
[
i
];
partsNew
.
add
(
partOld
);
j
++;
//only increment if new entry was made
}
}
}
}
event
.
setParticipants
(
partsNew
);
event
.
setParticipants
(
partsNew
.
toArray
(
new
String
[
partsNew
.
size
()]));
}
else
if
(
currLength
==
1
)
{
//only one is enrolled, only simple reset needed
event
.
setParticipants
(
new
String
[
0
]);
}
}
//save calendar event
//save calendar event
boolean
successfullyDone
=
calManager
.
updateEventFrom
(
cal
,
event
);
boolean
successfullyDone
=
calManager
.
updateEventFrom
(
cal
,
event
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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