Skip to content

Instantly share code, notes, and snippets.

@renaro
Last active October 19, 2016 03:06
Show Gist options
  • Save renaro/1d541d34eb685f8e8bf28bb3c9dab22c to your computer and use it in GitHub Desktop.
Save renaro/1d541d34eb685f8e8bf28bb3c9dab22c to your computer and use it in GitHub Desktop.
public boolean saveNote(String date, String text){
String finalText = text.append("\n").append(date);
Note note = Note.from(finalText);
return server.saveNote(note);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment