Skip to content

Commit 1e51014

Browse files
authored
Update turbo-native-modules-android.md (#4467)
1 parent 0d77749 commit 1e51014

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docs/fabric-native-components-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ public class ReactWebViewPackage extends BaseReactPackage {
381381
public ReactModuleInfoProvider getReactModuleInfoProvider() {
382382
return new ReactModuleInfoProvider() {
383383
@Override
384-
public Map<String, ReactModuleInfo> get() {
384+
public Map<String, ReactModuleInfo> getReactModuleInfos() {
385385
Map<String, ReactModuleInfo> map = new HashMap<>();
386386
map.put(ReactWebViewManager.REACT_CLASS, new ReactModuleInfo(
387387
ReactWebViewManager.REACT_CLASS, // name

docs/turbo-native-modules-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public class NativeLocalStoragePackage extends BaseReactPackage {
139139
public ReactModuleInfoProvider getReactModuleInfoProvider() {
140140
return new ReactModuleInfoProvider() {
141141
@Override
142-
public Map<String, ReactModuleInfo> get() {
142+
public Map<String, ReactModuleInfo> getReactModuleInfos() {
143143
Map<String, ReactModuleInfo> map = new HashMap<>();
144144
map.put(NativeLocalStorageModule.NAME, new ReactModuleInfo(
145145
NativeLocalStorageModule.NAME, // name

website/versioned_docs/version-0.76/fabric-native-components-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ public class ReactWebViewPackage extends TurboReactPackage {
381381
public ReactModuleInfoProvider getReactModuleInfoProvider() {
382382
return new ReactModuleInfoProvider() {
383383
@Override
384-
public Map<String, ReactModuleInfo> get() {
384+
public Map<String, ReactModuleInfo> getReactModuleInfos() {
385385
Map<String, ReactModuleInfo> map = new HashMap<>();
386386
map.put(ReactWebViewManager.REACT_CLASS, new ReactModuleInfo(
387387
ReactWebViewManager.REACT_CLASS, // name

website/versioned_docs/version-0.76/turbo-native-modules-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public class NativeLocalStoragePackage extends TurboReactPackage {
139139
public ReactModuleInfoProvider getReactModuleInfoProvider() {
140140
return new ReactModuleInfoProvider() {
141141
@Override
142-
public Map<String, ReactModuleInfo> get() {
142+
public Map<String, ReactModuleInfo> getReactModuleInfos() {
143143
Map<String, ReactModuleInfo> map = new HashMap<>();
144144
map.put(NativeLocalStorageModule.NAME, new ReactModuleInfo(
145145
NativeLocalStorageModule.NAME, // name

website/versioned_docs/version-0.77/fabric-native-components-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ public class ReactWebViewPackage extends BaseReactPackage {
381381
public ReactModuleInfoProvider getReactModuleInfoProvider() {
382382
return new ReactModuleInfoProvider() {
383383
@Override
384-
public Map<String, ReactModuleInfo> get() {
384+
public Map<String, ReactModuleInfo> getReactModuleInfos() {
385385
Map<String, ReactModuleInfo> map = new HashMap<>();
386386
map.put(ReactWebViewManager.REACT_CLASS, new ReactModuleInfo(
387387
ReactWebViewManager.REACT_CLASS, // name

website/versioned_docs/version-0.77/turbo-native-modules-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public class NativeLocalStoragePackage extends BaseReactPackage {
139139
public ReactModuleInfoProvider getReactModuleInfoProvider() {
140140
return new ReactModuleInfoProvider() {
141141
@Override
142-
public Map<String, ReactModuleInfo> get() {
142+
public Map<String, ReactModuleInfo> getReactModuleInfos() {
143143
Map<String, ReactModuleInfo> map = new HashMap<>();
144144
map.put(NativeLocalStorageModule.NAME, new ReactModuleInfo(
145145
NativeLocalStorageModule.NAME, // name

0 commit comments

Comments
 (0)