summaryrefslogtreecommitdiffstats
path: root/dexlist
diff options
context:
space:
mode:
authorCarl Shapiro <cshapiro@google.com>2010-06-08 16:37:12 -0700
committerCarl Shapiro <cshapiro@google.com>2010-06-08 17:04:11 -0700
commitde75089fb7216d19e9c22cce4dc62a49513477d3 (patch)
tree8c4035cc05218ddb7595e9a5c5997b53e58c2572 /dexlist
parent52ec072cc4dd215ff541a0b0842e91ea529a6e5d (diff)
downloadandroid_dalvik-de75089fb7216d19e9c22cce4dc62a49513477d3.tar.gz
android_dalvik-de75089fb7216d19e9c22cce4dc62a49513477d3.tar.bz2
android_dalvik-de75089fb7216d19e9c22cce4dc62a49513477d3.zip
Remove trailing whitespace.
Change-Id: I95534bb2b88eaf48f2329282041118cd034c812b
Diffstat (limited to 'dexlist')
-rw-r--r--dexlist/DexList.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/dexlist/DexList.c b/dexlist/DexList.c
index 841c17ffc..f2bec09d2 100644
--- a/dexlist/DexList.c
+++ b/dexlist/DexList.c
@@ -165,19 +165,19 @@ void dumpClass(DexFile* pDexFile, int idx)
fprintf(stderr, "Trouble reading class data\n");
return;
}
-
+
if (pClassDef->sourceFileIdx == 0xffffffff) {
fileName = NULL;
} else {
fileName = dexStringById(pDexFile, pClassDef->sourceFileIdx);
}
-
- /*
+
+ /*
* TODO: Each class def points at a sourceFile, so maybe that
* should be printed out. However, this needs to be coordinated
* with the tools that parse this output.
*/
-
+
for (i = 0; i < (int) pClassData->header.directMethodsSize; i++) {
dumpMethod(pDexFile, fileName, &pClassData->directMethods[i], i);
}