Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the need for synthetic methods. #87

Merged
merged 1 commit into from
Jan 4, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/com/bugsnag/android/Breadcrumbs.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
class Breadcrumbs implements JsonStream.Streamable {
private static class Breadcrumb {
private static final int MAX_MESSAGE_LENGTH = 140;
private String timestamp;
private String message;
String timestamp;
String message;

Breadcrumb(String message) {
this.timestamp = DateUtils.toISO8601(new Date());
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/bugsnag/android/Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ public void run() {
}
}

private void deliver(Notification notification, Error error) {
void deliver(Notification notification, Error error) {
try {
int errorCount = notification.deliver();
Logger.info(String.format("Sent %d new error(s) to Bugsnag", errorCount));
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/bugsnag/android/ErrorStore.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
class ErrorStore {
private static final String UNSENT_ERROR_PATH = "/bugsnag-errors/";

private final Configuration config;
private final String path;
final Configuration config;
final String path;

ErrorStore(Configuration config, Context appContext) {
this.config = config;
Expand Down