Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
echebbi committed Apr 1, 2024
1 parent d6d0ba2 commit 277ff30
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,6 @@ private StatusTree(String statusName, ImmutableList<ProjectTree> projects) {
this.projects = projects;
}

/**
* @return
*/
public void select(PitMutation mutation) {
for (ProjectTree projectTree : projects) {
if (mutation.getProject().equals(projectTree.projectName)) {
Expand Down Expand Up @@ -281,9 +278,6 @@ private ClassTree(String className, ImmutableList<MutationTree> projects) {
this.mutations = projects;
}

/**
* @return
*/
public void select(PitMutation mutation) {
for (MutationTree mutationTree : mutations) {
if (mutation.getLineNumber() == mutationTree.lineNumber &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
import org.eclipse.swtbot.eclipse.finder.SWTWorkbenchBot;
import org.eclipse.swtbot.swt.finder.waits.Conditions;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotButton;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotMenu;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotRadio;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotShell;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotTable;
Expand Down

0 comments on commit 277ff30

Please sign in to comment.