Skip to content

Commit 2dc2f61

Browse files
committed
Remove some logs
1 parent 2fa0146 commit 2dc2f61

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

src/processing/mode/android/AndroidBuild.java

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -285,22 +285,6 @@ public File exportPackage() throws IOException, SketchException, InterruptedExce
285285
return new File(exportFolder, "/bin/");
286286
}
287287

288-
String combine(String[] s, String glue)
289-
{
290-
int k = s.length;
291-
if ( k == 0 )
292-
{
293-
return null;
294-
}
295-
StringBuilder out = new StringBuilder();
296-
out.append( s[0] );
297-
for ( int x=1; x < k; ++x )
298-
{
299-
out.append(glue).append(s[x]);
300-
}
301-
return out.toString();
302-
}
303-
304288
private File signPackage() throws IOException, InterruptedException {
305289
File keyStore = getKeyStore();
306290
if(keyStore == null) return null;
@@ -325,14 +309,9 @@ private File signPackage() throws IOException, InterruptedException {
325309
sketch.getName()
326310
};
327311

328-
System.out.println("Started signing process");
329-
System.out.println(combine(args, " "));
330-
331312
Process signingProcess = Runtime.getRuntime().exec(args);
332313
signingProcess.waitFor();
333314

334-
System.out.println("Finished signing process");
335-
336315
if(verifySignedPackage(unsignedPackage)) {
337316
File signedPackage = new File(sketch.getFolder(), "android/bin/" + sketch.getName() + "-release-signed.apk");
338317
if(signedPackage.exists()) {

0 commit comments

Comments
 (0)