cleanup formating (e.g. no trailing spaces)
git-svn-id: http://skia.googlecode.com/svn/trunk@143 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/testmain.cpp b/tests/testmain.cpp
index 57d7c04..2e16de3 100644
--- a/tests/testmain.cpp
+++ b/tests/testmain.cpp
@@ -12,11 +12,11 @@
r->ref();
fReg = TestRegistry::Head();
}
-
+
~Iter() {
fReporter->unref();
}
-
+
Test* next() {
if (fReg) {
TestRegistry::Factory fact = fReg->factory();
@@ -27,7 +27,7 @@
}
return NULL;
}
-
+
static int Count() {
const TestRegistry* reg = TestRegistry::Head();
int count = 0;
@@ -37,7 +37,7 @@
}
return count;
}
-
+
private:
Reporter* fReporter;
const TestRegistry* fReg;
@@ -81,7 +81,7 @@
DebugfReporter reporter;
Iter iter(&reporter);
Test* test;
-
+
const int count = Iter::Count();
int index = 0;
while ((test = iter.next()) != NULL) {