Skip to content

Commit 07efafd

Browse files
committed
Remove extra space
1 parent 752c81e commit 07efafd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/java/com/reactnativecommunity/webview/RNCWebViewManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,7 @@ public boolean shouldOverrideUrlLoading(WebView view, String url) {
795795
final RNCWebView rncWebView = (RNCWebView) view;
796796
final boolean isJsDebugging = ((ReactContext) view.getContext()).getJavaScriptContextHolder().get() == 0;
797797

798-
if (! isJsDebugging && rncWebView.mCatalystInstance != null) {
798+
if (!isJsDebugging && rncWebView.mCatalystInstance != null) {
799799
final Pair<Integer, AtomicReference<ShouldOverrideCallbackState>> lock = RNCWebViewModule.shouldOverrideUrlLoadingLock.getNewLock();
800800
final int lockIdentifier = lock.first;
801801
final AtomicReference<ShouldOverrideCallbackState> lockObject = lock.second;

0 commit comments

Comments
 (0)