All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.darrinholst.sass_java.Clock Maven / Gradle / Ivy

package com.darrinholst.sass_java;

import java.util.Date;

public class Clock {
    private static Clock delegate = new Clock();

    public static void setDelegate(Clock clock) {
        delegate = clock;
    }

    public static Date now() {
        return delegate.getCurrentTime();
    }

    protected Date getCurrentTime() {
        return new Date();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy