Browse Source

semicolon

Signed-off-by: r4sas <r4sas@i2pmail.org>
master
R4SAS 3 days ago
parent
commit
3711a70495
Signed by: r4sas
GPG Key ID: 66F6C87B98EBCFE2
  1. 2
      app/src/main/java/org/purplei2p/i2pd/DaemonWrapper.java

2
app/src/main/java/org/purplei2p/i2pd/DaemonWrapper.java

@ -205,7 +205,7 @@ public class DaemonWrapper {
private void processAssets() { private void processAssets() {
// Checking if application folder exists, and create it if not // Checking if application folder exists, and create it if not
Log.d(TAG, "checking app directory"); Log.d(TAG, "checking app directory");
File appPath = new File(i2pdpath) File appPath = new File(i2pdpath);
if (!appPath.exists()) { if (!appPath.exists()) {
boolean result = appPath.mkdir(); boolean result = appPath.mkdir();
Log.d(TAG, "appPath.mkdir() returned " + result + " for " + appPath); Log.d(TAG, "appPath.mkdir() returned " + result + " for " + appPath);

Loading…
Cancel
Save