Skip to content
This repository has been archived by the owner on Jan 15, 2021. It is now read-only.

Commit

Permalink
Minor changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
tompaana committed Feb 22, 2016
1 parent e3cf679 commit 8e7e29a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<source-file src="src/android/java/io/jxcore/node/ConnectionModel.java" target-dir="src/io/jxcore/node/" />
<source-file src="src/android/java/io/jxcore/node/ConnectivityInfo.java" target-dir="src/io/jxcore/node/" />
<source-file src="src/android/java/io/jxcore/node/IncomingSocketThread.java" target-dir="src/io/jxcore/node/" />
<source-file src="src/android/java/io/jxcore/node/JXcoreThaliCallback.java" target-dir="src/io/jxcore/node/" />
<source-file src="src/android/java/io/jxcore/node/JXcoreThaliCallback.java" target-dir="src/io/jxcore/node/" />
<source-file src="src/android/java/io/jxcore/node/LifeCycleMonitor.java" target-dir="src/io/jxcore/node/" />
<source-file src="src/android/java/io/jxcore/node/ListenerOrIncomingConnection.java" target-dir="src/io/jxcore/node/" />
<source-file src="src/android/java/io/jxcore/node/OutgoingSocketThread.java" target-dir="src/io/jxcore/node/" />
Expand Down
3 changes: 1 addition & 2 deletions src/android/java/io/jxcore/node/ConnectionHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ public void uncaughtException(Thread thread, final Throwable throwable) {
@Override
public void run() {
Log.e(TAG, "Unhandled exception: " + throwable.getMessage(), throwable);
throw new RuntimeException(throwable);
}
});
}
Expand Down Expand Up @@ -440,7 +439,7 @@ public boolean onPermissionCheckRequired(String permission) {
String errorMessage = "Received a request for permission \"" + permission
+ "\", but we were expecting that all the required permissions were already granted";
Log.e(TAG, "onPermissionCheckRequired: " + errorMessage);
throw new SecurityException(errorMessage);
return false;
}

/**
Expand Down

0 comments on commit 8e7e29a

Please sign in to comment.