Skip to content

Commit

Permalink
update javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
fractalwrench committed Feb 5, 2018
1 parent 887b79d commit fdf8732
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* For example:
* <p>
* Bugsnag.beforeRecordBreadcrumb(new BeforeRecordBreadcrumb() {
* public boolean send(Breadcrumb breadcrumb) {
* public boolean shouldRecord(Breadcrumb breadcrumb) {
* return false; // ignore the breadcrumb
* }
* })
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/main/java/com/bugsnag/android/Bugsnag.java
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ public static void beforeNotify(final BeforeNotify beforeNotify) {
* For example:
* <p>
* Bugsnag.beforeRecordBreadcrumb(new BeforeRecordBreadcrumb() {
* public boolean send(Breadcrumb breadcrumb) {
* public boolean shouldRecord(Breadcrumb breadcrumb) {
* return false; // ignore the breadcrumb
* }
* })
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/main/java/com/bugsnag/android/Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ public void beforeNotify(BeforeNotify beforeNotify) {
* For example:
* <p>
* Bugsnag.beforeRecordBreadcrumb(new BeforeRecordBreadcrumb() {
* public boolean send(Breadcrumb breadcrumb) {
* public boolean shouldRecord(Breadcrumb breadcrumb) {
* return false; // ignore the breadcrumb
* }
* })
Expand Down

0 comments on commit fdf8732

Please sign in to comment.