Skip to content

Commit

Permalink
Merge branch 'master' into version-2.1.0-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
samtstern committed Jul 17, 2017
2 parents 48f017a + dd34753 commit 46ab4a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions database/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ So say we have these chat messages in our Firebase database:
We can represent a chat message with this Java class:

```java
public static class Chat {
public class Chat {
private String mName;
private String mMessage;
private String mUid;
Expand Down Expand Up @@ -139,7 +139,7 @@ If we use the same layout as before (`android.R.layout.two_line_list_item`), the
We can wrap that in a ViewHolder with:

```java
public static class ChatHolder extends RecyclerView.ViewHolder {
public class ChatHolder extends RecyclerView.ViewHolder {
private final TextView mNameField;
private final TextView mMessageField;

Expand Down

0 comments on commit 46ab4a7

Please sign in to comment.