Skip to content

Commit

Permalink
Use Class<?> instead of raw type Class.
Browse files Browse the repository at this point in the history
  • Loading branch information
spericas committed Jun 14, 2011
1 parent 2dbf863 commit 762e33c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -54,9 +54,9 @@ public interface ReadFromHandlerContext<T> extends BaseContext {

T proceed() throws IOException;

Class getType();
Class<?> getType();

void setType(Class type);
void setType(Class<?> type);

Type getGenericType();

Expand Down
Expand Up @@ -58,9 +58,9 @@ public interface WriteToHandlerContext<T> extends BaseContext {

void setEntity(T entity);

Class getType();
Class<?> getType();

void setType(Class type);
void setType(Class<?> type);

Type getGenericType();

Expand Down

0 comments on commit 762e33c

Please sign in to comment.