1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2011-05-04 02:59:36 +00:00
parent 54f1590001
commit 1b82834478

View file

@ -647,7 +647,7 @@ public class CIndex implements IIndex {
public long getCacheHits() { public long getCacheHits() {
long result= 0; long result= 0;
for (IIndexFragment fragment : fFragments) { for (IIndexFragment fragment : fFragments) {
result+= fragment.getCacheHits(); result += fragment.getCacheHits();
} }
return result; return result;
} }
@ -655,7 +655,7 @@ public class CIndex implements IIndex {
public long getCacheMisses() { public long getCacheMisses() {
long result= 0; long result= 0;
for (IIndexFragment fragment : fFragments) { for (IIndexFragment fragment : fFragments) {
result+= fragment.getCacheMisses(); result += fragment.getCacheMisses();
} }
return result; return result;
} }