Skip to content

Commit

Permalink
fix: occasional compilation error on android (missing final)
Browse files Browse the repository at this point in the history
  • Loading branch information
banghia112 authored Sep 15, 2023
1 parent 2349d2c commit 726c02b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class DatePickerModuleImpl {
}

public void openPicker(ReadableMap props){
PickerView picker = createPicker(props);
final PickerView picker = createPicker(props);
Callback onConfirm = new Callback() {
@Override
public void invoke(Object... objects) {
Expand Down

0 comments on commit 726c02b

Please sign in to comment.