Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
Add gitignore and remove unused dependency
Browse files Browse the repository at this point in the history
vaadin/vaadin-combo-box#5

* Add demo to component

* formatting the file and remove unused dependency

* file formatting

Flow-component: vaadin-combo-box
  • Loading branch information
ZheSun88 authored and pekam committed Oct 26, 2017
1 parent 05e9190 commit d45e48a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
1 change: 0 additions & 1 deletion src/main/java/com/vaadin/ui/combobox/ComboBox.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
* @param <T>
* the type of the items to be inserted in the combo box
*/

public class ComboBox<T> extends GeneratedVaadinComboBox<ComboBox<T>>
implements HasSize, HasItems<T>, HasValidation,
HasValue<ComboBox<T>, T>, HasDataProvider<T> {
Expand Down
8 changes: 4 additions & 4 deletions src/test/java/com/vaadin/ui/combobox/ComboBoxView.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@
import com.vaadin.flow.demo.DemoView;
import com.vaadin.flow.dom.ElementConstants;
import com.vaadin.router.Route;
import com.vaadin.ui.combobox.ComboBox;
import com.vaadin.ui.common.HtmlImport;
import com.vaadin.ui.html.Div;

/**
* View for {@link ComboBox} demo.
*
* @author Vaadin Ltd
*/
@Route("")
@HtmlImport("bower_components/vaadin-valo-theme/vaadin-combo-box.html")
public class ComboBoxView extends DemoView {
public static void main(String... args) throws Exception {

public static void main(String... args) throws Exception {
new ComponentDemoServer().startServer();
}

Expand Down
9 changes: 2 additions & 7 deletions vaadin-combo-box-flow-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,7 @@
<artifactId>flow-server</artifactId>
<version>${flow.version}</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>flow-html-components</artifactId>
<version>${flow.version}</version>
</dependency>


<!-- Dependencies for the demo -->
<dependency>
<groupId>com.vaadin</groupId>
Expand All @@ -50,6 +45,6 @@
<artifactId>flow-data</artifactId>
<version>${flow.version}</version>
<scope>test</scope>
</dependency>
</dependency>
</dependencies>
</project>

0 comments on commit d45e48a

Please sign in to comment.