Skip to content

Commit

Permalink
Fix the type in the API
Browse files Browse the repository at this point in the history
  • Loading branch information
dkfellows committed Sep 27, 2014
1 parent 4f5e9ac commit 65ba3e9
Showing 1 changed file with 2 additions and 5 deletions.
Expand Up @@ -29,7 +29,6 @@
* @author David Withers
*/
public interface ContextualViewFactoryRegistry {

/**
* Discover and return the ContextualViewFactory associated to the provided
* object. This is accomplished by returning the discovered
Expand All @@ -38,9 +37,7 @@ public interface ContextualViewFactoryRegistry {
*
* @param object
* @return
*
* @see ContextualViewFactory#canHandle(Object)
*/
public List<ContextualViewFactory> getViewFactoriesForObject(Object object);

}
public List<ContextualViewFactory<?>> getViewFactoriesForObject(Object object);
}

0 comments on commit 65ba3e9

Please sign in to comment.