Skip to content

Commit

Permalink
feat: add nullability annotations to missed getters
Browse files Browse the repository at this point in the history
  • Loading branch information
fractalwrench committed Dec 13, 2018
1 parent 99fd5ca commit 18c5b5a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sdk/src/main/java/com/bugsnag/android/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -575,10 +575,12 @@ public void setCodeBundleId(@Nullable String codeBundleId) {
this.codeBundleId = codeBundleId;
}

@Nullable
public String getCodeBundleId() {
return codeBundleId;
}

@NonNull
public String getNotifierType() {
return notifierType;
}
Expand Down

0 comments on commit 18c5b5a

Please sign in to comment.