Skip to content

Commit

Permalink
Returning DEFAULT when no InputType is set
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed May 24, 2013
1 parent 85c2871 commit 3b92874
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -36,7 +36,7 @@ public final class InputComponents
*/
public static InputType getInputType(InputComponent<?, ?> input)
{
InputType result = null;
InputType result = InputType.DEFAULT;
if (input.hasFacet(HintsFacet.class))
{
HintsFacet facet = input.getFacet(HintsFacet.class);
Expand Down

0 comments on commit 3b92874

Please sign in to comment.