Skip to content

Commit

Permalink
remove shutdown gracetime (Tribler#2635)
Browse files Browse the repository at this point in the history
  • Loading branch information
brussee committed Nov 22, 2016
1 parent 63817db commit 8b9c366
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ private void shutdown() {
.subscribe(new Observer<ShutdownAck>() {

public void onNext(ShutdownAck response) {
Log.v("shutdown", "grace_time = " + response.getGracetime());
Log.v("shutdown", "shutdown = " + String.valueOf(response.isShutdown()));
}

public void onCompleted() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
public class ShutdownAck {

private boolean shutdown;
private float gracetime;

ShutdownAck() {
}
Expand All @@ -12,8 +11,4 @@ public boolean isShutdown() {
return shutdown;
}

public float getGracetime() {
return gracetime;
}

}

0 comments on commit 8b9c366

Please sign in to comment.