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

org.redmine.ta.internal.LocalDateFormat Maven / Gradle / Ivy

Go to download

Free open-source Java API for Redmine and Chiliproject bug/task management systems.

The newest version!
package org.redmine.ta.internal;

import java.text.SimpleDateFormat;

final class LocalDateFormat extends ThreadLocal {
    private final String format;

    LocalDateFormat(String format) {
        this.format = format;
    }

    protected SimpleDateFormat initialValue() {
        return new SimpleDateFormat(format);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy