Skip to content

Commit 2150a4d

Browse files
author
Daniel Novak
authored
Update README.md
1 parent 70d4ba8 commit 2150a4d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ How to implement
1515
1. Create an interface for your <b>View</b> by extending [IView](library/src/main/java/eu/inloop/viewmodel/IView.java). We will call it IUserListView for this example.
1616

1717
```java
18-
19-
public interface IUserListView extends IView {
20-
public void showUsers(List<User> users);
21-
}
18+
public interface IUserListView extends IView {
19+
public void showUsers(List<User> users);
20+
}
21+
2222
```
2323
2. Create your <b>ViewModel</b> class by extending [AbstractViewModel](library/src/main/java/eu/inloop/viewmodel/AbstractViewModel.java). For example: <br/>
2424

0 commit comments

Comments
 (0)