mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 23:05:47 +02:00
Cosmetics.
This commit is contained in:
parent
39344a13d2
commit
268b294717
1 changed files with 3 additions and 3 deletions
|
@ -94,7 +94,7 @@ class THGraph {
|
||||||
stack.add(to);
|
stack.add(to);
|
||||||
|
|
||||||
while (!stack.isEmpty()) {
|
while (!stack.isEmpty()) {
|
||||||
THGraphNode node= stack.remove(stack.size()-1);
|
THGraphNode node= stack.remove(stack.size() - 1);
|
||||||
List<THGraphEdge> out= node.getOutgoing();
|
List<THGraphEdge> out= node.getOutgoing();
|
||||||
for (THGraphEdge edge : out) {
|
for (THGraphEdge edge : out) {
|
||||||
node= edge.getEndNode();
|
node= edge.getEndNode();
|
||||||
|
@ -150,7 +150,7 @@ class THGraph {
|
||||||
if (monitor.isCanceled()) {
|
if (monitor.isCanceled()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ICElement elem= stack.remove(stack.size()-1);
|
ICElement elem= stack.remove(stack.size() - 1);
|
||||||
THGraphNode graphNode= addNode(elem);
|
THGraphNode graphNode= addNode(elem);
|
||||||
try {
|
try {
|
||||||
IIndexBinding binding = IndexUI.elementToBinding(index, elem);
|
IIndexBinding binding = IndexUI.elementToBinding(index, elem);
|
||||||
|
@ -212,7 +212,7 @@ class THGraph {
|
||||||
if (monitor.isCanceled()) {
|
if (monitor.isCanceled()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ICElement elem= stack.remove(stack.size()-1);
|
ICElement elem= stack.remove(stack.size() - 1);
|
||||||
THGraphNode graphNode= addNode(elem);
|
THGraphNode graphNode= addNode(elem);
|
||||||
try {
|
try {
|
||||||
IBinding binding = IndexUI.elementToBinding(index, elem);
|
IBinding binding = IndexUI.elementToBinding(index, elem);
|
||||||
|
|
Loading…
Add table
Reference in a new issue