Skip to content

Commit

Permalink
Remove diamond operator
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=131623598
  • Loading branch information
sameb committed Aug 29, 2016
1 parent 2c23a62 commit 9b042f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public void thrownException_gets_expectFailure() {
}

private <T, P extends CheckedProvider<T>> CheckedProviderSubject<T, P> createSubject(P provider) {
return new CheckedProviderSubject<>(new ThrowingFailureStrategy(), provider);
return new CheckedProviderSubject<T, P>(new ThrowingFailureStrategy(), provider);
}

private String getReturningProviderName(String providing) {
Expand Down

0 comments on commit 9b042f4

Please sign in to comment.