Skip to content

Commit

Permalink
Merge pull request Tencent#77 from junyuecao/dev
Browse files Browse the repository at this point in the history
Rename method generalUnsignedApk to generateUnsignedApk
  • Loading branch information
tys282000 authored Sep 28, 2016
2 parents be33cd9 + 9d5886c commit 642d987
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void buildPatch() throws IOException, InterruptedException {
if (resultDir.listFiles().length == 0) {
return;
}
generalUnsignedApk(unSignedApk);
generateUnsignedApk(unSignedApk);
signApk(unSignedApk, signedApk);

use7zApk(signedApk, signedWith7ZipApk, sevenZipOutPutDir);
Expand Down Expand Up @@ -113,8 +113,8 @@ private void signApk(File input, File output) throws IOException, InterruptedExc
* @param output unsigned apk file output
* @throws IOException
*/
private void generalUnsignedApk(File output) throws IOException {
Logger.d("General unsigned apk: %s", output.getName());
private void generateUnsignedApk(File output) throws IOException {
Logger.d("Generate unsigned apk: %s", output.getName());
final File tempOutDir = config.mTempResultDir;
if (!tempOutDir.exists()) {
throw new IOException(String.format(
Expand Down

0 comments on commit 642d987

Please sign in to comment.