code cleanup (spacing)

This commit is contained in:
Connor Tumbleson 2013-11-05 15:38:49 -06:00
parent f6623d8a12
commit feb71b2aa0

View File

@ -91,7 +91,6 @@ public class ApkDecoder {
if (hasResources()) {
Map<String, String> sdkInfo = mAndrolib.getResTable(mApkFile).getSdkInfo();
if (sdkInfo.get("targetSdkVersion") != null) {
mApi = Integer.parseInt(sdkInfo.get("targetSdkVersion"));
}
@ -132,8 +131,6 @@ public class ApkDecoder {
}
}
if (hasSources()) {
switch (mDecodeSources) {
case DECODE_SOURCES_NONE:
@ -354,8 +351,7 @@ public class ApkDecoder {
private final Androlib mAndrolib;
private final static Logger LOGGER = Logger.getLogger(Androlib.class
.getName());
private final static Logger LOGGER = Logger.getLogger(Androlib.class.getName());
private ExtFile mApkFile;
private File mOutDir;