Skip to content

Commit

Permalink
Merge pull request mwaylabs#1 from magruschinske/patch-1
Browse files Browse the repository at this point in the history
inline return
  • Loading branch information
johannes-staehlin committed Oct 6, 2015
2 parents 4d9c8e0 + 9dca963 commit dd32dc7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/android/ClientCertificateAuthentication.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ public class ClientCertificateAuthentication extends CordovaPlugin {

@Override
public Boolean shouldAllowBridgeAccess(String url) {
Boolean aBoolean = super.shouldAllowBridgeAccess(url);
return aBoolean;
return super.shouldAllowBridgeAccess(url);
}


Expand Down

0 comments on commit dd32dc7

Please sign in to comment.