Skip to content

Commit

Permalink
Update StopRecording.java
Browse files Browse the repository at this point in the history
  • Loading branch information
chauhan9674 authored Feb 16, 2024
1 parent 51a2177 commit e7563ff
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
import de.dennisguse.opentracks.util.ExportUtils;

public class StopRecording extends AbstractAPIActivity {
private StopRecording() {
//Private constructor is introduced to prevent instantiation from outside.
}
protected void execute(TrackRecordingService service) {
RecordingData recordingData = service.getRecordingDataObservable().getValue();
Track.Id trackId = null;
Expand All @@ -27,4 +24,9 @@ protected void execute(TrackRecordingService service) {
protected boolean isPostExecuteStopService() {
return true;
}
// Empty finalizer declared as final
@Override
public final void finalize() {
// Empty finalizer
}
}

0 comments on commit e7563ff

Please sign in to comment.