Guest User

Untitled

a guest
Nov 17th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. private static String resolveTimestamp(String s) {
  2. String timestamp = "\{TIMESTAMP}";
  3. return s.replaceAll(timestamp, String.valueOf(System.currentTimeMillis()));
  4. }
Add Comment
Please, Sign In to add comment