1 package com.atlassian.pageobjects.elements.query.util;
2
3 /**
4 * Real-world clock returning system time.
5 *
6 */
7 public final class SystemClock implements Clock
8 {
9 public static final SystemClock INSTANCE = new SystemClock();
10
11 public long currentTime()
12 {
13 return System.currentTimeMillis();
14 }
15 }