Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Commit 2b2cd14

Browse files
authored
Fixing wrong parameter order on configureWithTimeout function on Android (#193)
* Fixing wrong param order for configureWithTimeout * Fixing wrong param order for configureWithTimeout on Android
1 parent 396bec7 commit 2b2cd14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/java/com/launchdarkly/reactnative/LaunchdarklyReactNativeClientModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public void configure(ReadableMap config, ReadableMap context, boolean isContext
120120
}
121121

122122
@ReactMethod
123-
public void configureWithTimeout(ReadableMap config, ReadableMap context, boolean isContext, Integer timeout, final Promise promise) {
123+
public void configureWithTimeout(ReadableMap config, ReadableMap context, Integer timeout, boolean isContext, final Promise promise) {
124124
internalConfigure(config, context, timeout, isContext, promise);
125125
}
126126

0 commit comments

Comments
 (0)