Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public class MeetingParser {
  2.  
  3. private static Meeting parseMeeting(final String s) throws ParseException {
  4. // TODO
  5. }
  6.  
  7. public static void main(String[] args) throws ParseException {
  8. final String s = "2019-05-21 16:06:06.123;Nicolas,Marc,Liudmila;Slack";
  9. System.out.println(parseMeeting(s));
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement