Skip to content

Commit 495ecd8

Browse files
authored
Remove numbers from snippets
1 parent 09e43d5 commit 495ecd8

File tree

1 file changed

+1
-1
lines changed
  • tutorials/getting-started-with-flow/03__creating-live-filtering-for-entities

1 file changed

+1
-1
lines changed

tutorials/getting-started-with-flow/03__creating-live-filtering-for-entities/content.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public MainView() {
8282
[source,java]
8383
----
8484
public void updateList() {
85-
grid.setItems(service.findAll(filterText.getValue())); <1>
85+
grid.setItems(service.findAll(filterText.getValue()));
8686
}
8787
----
8888
* `filterText.getValue()` returns the current string in the text field.

0 commit comments

Comments
 (0)