return null;
}
public synchronized void clear(HttpRequest httpRequest) {
if (httpRequest != null) {
HttpRequestMatcher httpRequestMatcher = new MatcherBuilder().transformsToMatcher(httpRequest);
for (Expectation expectation : new ArrayList<Expectation>(expectations)) {
if (httpRequestMatcher.matches(expectation.getHttpRequest())) {
if (this.expectations.contains(expectation)) {
this.expectations.remove(expectation);
}