remove printlns

This commit is contained in:
Geoffrey Goh
2016-01-28 20:22:14 -08:00
parent fddfcb2af0
commit 1185d11d5b

View File

@@ -216,7 +216,6 @@ public class CodePushPackage {
}
if (isZip) {
System.err.println("THIS IS A ZIP!");
String unzippedFolderPath = getUnzippedFolderPath();
CodePushUtils.unzipFile(downloadFile, unzippedFolderPath);
CodePushUtils.deleteFileSilently(downloadFile);
@@ -253,7 +252,6 @@ public class CodePushPackage {
updatePackage = CodePushUtils.convertJsonObjectToWriteable(updatePackageJSON);
}
} else {
System.err.println("THIS IS NOT A ZIP!");
// File is not a zip.
File updateBundleFile = new File(newPackageFolderPath, UPDATE_BUNDLE_FILE_NAME);
downloadFile.renameTo(updateBundleFile);