Skip to content

Commit

Permalink
Fix DMI_DOH :)
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenporras authored Oct 16, 2023
1 parent 28d925c commit 9ce7197
Showing 1 changed file with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.fail;

import java.util.ArrayList;
import java.util.List;
Expand Down Expand Up @@ -179,13 +178,9 @@ public IMatchResult checkMatch(final IActualParameter actual, final IFormalParam
} else {
return matchResultTypeError;
}
} else {
fail("incorrect parameters");
return null;
}

}
throw new AssertionError("incorrect parameters");
}

}

private final ParameterListMatcher parameterListMatcher = new ParameterListMatcher();
Expand Down

0 comments on commit 9ce7197

Please sign in to comment.