Skip to content

Commit

Permalink
semicolon
Browse files Browse the repository at this point in the history
Signed-off-by: r4sas <r4sas@i2pmail.org>
  • Loading branch information
r4sas committed Dec 19, 2024
1 parent 66809c5 commit 3711a70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/org/purplei2p/i2pd/DaemonWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public synchronized void startDaemon() {
private void processAssets() {
// Checking if application folder exists, and create it if not
Log.d(TAG, "checking app directory");
File appPath = new File(i2pdpath)
File appPath = new File(i2pdpath);
if (!appPath.exists()) {
boolean result = appPath.mkdir();
Log.d(TAG, "appPath.mkdir() returned " + result + " for " + appPath);
Expand Down

0 comments on commit 3711a70

Please sign in to comment.