Skip to content

Commit

Permalink
small cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
krzyzy-hltech committed Jul 17, 2018
1 parent 3a18424 commit 94d877d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ public ServiceContracts(String name, String version, Map<String, String> capabil

for (Entry<String, String> expectationsPerProtocolEntry : expectationsPerProtocol.entrySet()) {
String protocol = expectationsPerProtocolEntry.getKey();
String expectations = expectationsPerProtocolEntry.getValue();
this.expectations.put(new ProviderProtocol(provider, protocol), new Contract(expectations));
String protocolExpectation = expectationsPerProtocolEntry.getValue();
this.expectations.put(new ProviderProtocol(provider, protocol), new Contract(protocolExpectation));
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

import javax.persistence.*;
import java.util.Set;
import java.util.stream.Collectors;

import static com.google.common.collect.Sets.newHashSet;
import static java.util.stream.Collectors.toSet;
Expand Down

0 comments on commit 94d877d

Please sign in to comment.