Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
ab82d9b6
Commit
ab82d9b6
authored
12 years ago
by
brinn
Browse files
Options
Downloads
Patches
Plain Diff
Obey coding conventions.
SVN: 27102
parent
bef71f12
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/source/java/ch/systemsx/cisd/common/collection/GroupingDAG.java
+5
-5
5 additions, 5 deletions
.../java/ch/systemsx/cisd/common/collection/GroupingDAG.java
with
5 additions
and
5 deletions
common/source/java/ch/systemsx/cisd/common/collection/GroupingDAG.java
+
5
−
5
View file @
ab82d9b6
...
...
@@ -119,7 +119,7 @@ public class GroupingDAG<T>
private
void
addNoDependency
(
T
item
)
{
if
(
!
dependenciesCount
.
containsKey
(
item
))
if
(
false
==
dependenciesCount
.
containsKey
(
item
))
{
dependenciesCount
.
put
(
item
,
0
);
}
...
...
@@ -158,11 +158,11 @@ public class GroupingDAG<T>
// if the dependency count of the item is -1 - it means, that we have already used it
private
void
sort
()
{
while
(
!
queue
.
isEmpty
())
while
(
false
==
queue
.
isEmpty
())
{
List
<
T
>
levelItems
=
new
LinkedList
<
T
>();
while
(
!
queue
.
isEmpty
()
&&
peekCount
()
<
0
)
while
(
false
==
queue
.
isEmpty
()
&&
peekCount
()
<
0
)
{
queue
.
poll
();
// remove the elements that are duplicated in the queue
}
...
...
@@ -172,7 +172,7 @@ public class GroupingDAG<T>
throw
new
UserFailureException
(
"Circular dependency found!"
);
}
while
(
!
queue
.
isEmpty
()
&&
peekCount
()
<=
0
)
while
(
false
==
queue
.
isEmpty
()
&&
peekCount
()
<=
0
)
{
T
item
=
queue
.
poll
().
item
;
...
...
@@ -184,7 +184,7 @@ public class GroupingDAG<T>
}
sortedGroups
.
add
(
levelItems
);
if
(
!
queue
.
isEmpty
())
if
(
false
==
queue
.
isEmpty
())
{
// we don't need to clean if we know, that this is the last loop
updateQueueAfterTheLevelCompleted
(
levelItems
);
...
...
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