Skip to content

Commit

Permalink
Use JTextField in TextComponentBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-wyluda committed Jul 8, 2014
1 parent b3f642b commit 68c365e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
*/
package org.jboss.forge.plugin.idea.ui.component;

import com.intellij.ui.components.JBTextField;
import org.jboss.forge.addon.ui.hints.InputType;

import javax.swing.*;
import javax.swing.text.JTextComponent;

public class TextBoxComponentBuilder extends AbstractTextComponentBuilder
Expand All @@ -22,6 +22,6 @@ protected String getSupportedInputType()
@Override
protected JTextComponent createTextComponent()
{
return new JBTextField();
return new JTextField();
}
}

0 comments on commit 68c365e

Please sign in to comment.