Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
elexis-3-core
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
elexis
elexis-3-core
Commits
ca48853d
Commit
ca48853d
authored
Oct 04, 2019
by
Thomas Huster
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[14358] fixed concurrent modification in HistoryLoader
parent
aa7d47a9
Pipeline
#11446
passed with stages
in 4 minutes and 31 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
bundles/ch.elexis.core.ui/src/ch/elexis/core/ui/actions/HistoryLoader.java
....core.ui/src/ch/elexis/core/ui/actions/HistoryLoader.java
+2
-2
No files found.
bundles/ch.elexis.core.ui/src/ch/elexis/core/ui/actions/HistoryLoader.java
View file @
ca48853d
...
...
@@ -39,7 +39,7 @@ import ch.rgw.tools.VersionedResource;
*/
public
class
HistoryLoader
extends
BackgroundJob
{
StringBuilder
sb
;
List
<
IEncounter
>
lKons
;
private
List
<
IEncounter
>
lKons
;
KonsFilter
filter
;
IFilter
globalFilter
;
private
final
int
currentPage
;
...
...
@@ -66,7 +66,7 @@ public class HistoryLoader extends BackgroundJob {
final
boolean
multiline
,
final
int
currentPage
,
final
int
pageSize
){
super
(
Messages
.
HistoryLoader_LoadKonsMessage
);
//$NON-NLS-1$
this
.
sb
=
sb
;
this
.
lKons
=
paramlKons
;
this
.
lKons
=
new
ArrayList
<
IEncounter
>(
paramlKons
)
;
this
.
multiline
=
multiline
;
this
.
setPriority
(
Job
.
DECORATE
);
this
.
setUser
(
false
);
...
...
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