Skip to content

Commit

Permalink
changed update service so the constructor takes no args to fix crash
Browse files Browse the repository at this point in the history
  • Loading branch information
thasmin committed Jun 4, 2012
1 parent 0f693ba commit 7e0f27b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/com/axelby/podax/UpdateService.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ public static void downloadPodcasts(Context context) {
context.startService(intent);
}

public UpdateService(String name) {
super(name);
public UpdateService() {
super("Podax_UpdateService");
}

@Override
Expand Down

0 comments on commit 7e0f27b

Please sign in to comment.