Guest User

Untitled

a guest
Feb 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public Boolean store() {
  2. mDatabase = FirebaseDatabase.getInstance().getReference();
  3. mDatabase.child("posts").push().setValue(this); //it has effect
  4. mDatabase.child("groups").push().setValue(this.author); //it hasn't effect
  5. return true;
  6. }
Add Comment
Please, Sign In to add comment