mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Cosmetics.
This commit is contained in:
parent
54f1590001
commit
1b82834478
1 changed files with 2 additions and 2 deletions
|
@ -647,7 +647,7 @@ public class CIndex implements IIndex {
|
|||
public long getCacheHits() {
|
||||
long result= 0;
|
||||
for (IIndexFragment fragment : fFragments) {
|
||||
result+= fragment.getCacheHits();
|
||||
result += fragment.getCacheHits();
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
@ -655,7 +655,7 @@ public class CIndex implements IIndex {
|
|||
public long getCacheMisses() {
|
||||
long result= 0;
|
||||
for (IIndexFragment fragment : fFragments) {
|
||||
result+= fragment.getCacheMisses();
|
||||
result += fragment.getCacheMisses();
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue