Skip to content

Commit

Permalink
Fixing type signatures in sample application
Browse files Browse the repository at this point in the history
  • Loading branch information
ekuefler committed Jun 15, 2013
1 parent 015ec4f commit 52b5ddf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gwtmockito-sample/src/test/java/sample/MyWidgetTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void testSetNameWithFakes() {
// implementations to be created. Normally you would do this in setUp.
GwtMockito.useProviderForType(HasText.class, new FakeProvider<HasText>() {
@Override
public HasText getFake(Class<? extends HasText> type) {
public HasText getFake(Class<?> type) {
return new HasText() {
private String text;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void testUpdateData() {
public void testSetNameWithFakes() {
GwtMockito.useProviderForType(HasText.class, new FakeProvider<HasText>() {
@Override
public HasText getFake(Class<? extends HasText> type) {
public HasText getFake(Class<?> type) {
return new HasText() {
private String text;

Expand Down

0 comments on commit 52b5ddf

Please sign in to comment.