Skip to content

Commit 1086a77

Browse files
committed
refactor: remove unnecessary access modifiers in RNIterableAPIModule for cleaner code
1 parent b96c217 commit 1086a77

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

android/src/main/java/com/iterable/reactnative/RNIterableAPIModule.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,12 +226,12 @@ public void passAlongAuthToken(String authToken) {
226226
moduleImpl.passAlongAuthToken(authToken);
227227
}
228228

229-
@ReactMethod
229+
230230
public void sendEvent(@NonNull String eventName, @Nullable Object eventData) {
231231
moduleImpl.sendEvent(eventName, eventData);
232232
}
233233

234-
public void onInboxUpdated() {
234+
void onInboxUpdated() {
235235
moduleImpl.onInboxUpdated();
236236
}
237237
}

0 commit comments

Comments
 (0)