Skip to content

Commit

Permalink
organize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
avalax committed Jan 12, 2018
1 parent e1bcf8e commit 1679f0c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

import de.avalax.fitbuddy.domain.model.ResourceException;
import de.avalax.fitbuddy.domain.model.workout.Workout;
import de.avalax.fitbuddy.domain.model.workout.WorkoutException;
import de.avalax.fitbuddy.domain.model.workout.WorkoutId;
import de.avalax.fitbuddy.domain.model.workout.WorkoutRepository;

Expand Down
3 changes: 1 addition & 2 deletions src/main/java/de/avalax/fitbuddy/domain/model/set/Sets.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package de.avalax.fitbuddy.domain.model.set;

import java.io.Serializable;
import java.util.Collection;

public interface Sets extends Serializable, Iterable<Set> {
Set createSet();
Expand All @@ -15,7 +14,7 @@ public interface Sets extends Serializable, Iterable<Set> {
void setCurrentSet(int index) throws SetException;

@Deprecated
// Remove exception
// Remove exception
int indexOfCurrentSet() throws SetException;

void add(Set set);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import de.avalax.fitbuddy.domain.model.exercise.BasicExercise;
import de.avalax.fitbuddy.domain.model.exercise.Exercise;
import de.avalax.fitbuddy.domain.model.workout.Workout;
import de.avalax.fitbuddy.domain.model.workout.WorkoutException;
import de.avalax.fitbuddy.presentation.FitbuddyApplication;
import de.avalax.fitbuddy.presentation.edit.exercise.EditExerciseActivity;

Expand Down

0 comments on commit 1679f0c

Please sign in to comment.