mirror of
https://github.com/plexusorg/Plex.git
synced 2025-07-14 10:28:35 +00:00
Format
This commit is contained in:
@ -2,21 +2,25 @@ package dev.plex.toml;
|
||||
|
||||
import java.util.TimeZone;
|
||||
|
||||
public class DatePolicy {
|
||||
public class DatePolicy
|
||||
{
|
||||
|
||||
private final TimeZone timeZone;
|
||||
private final boolean showFractionalSeconds;
|
||||
|
||||
DatePolicy(TimeZone timeZone, boolean showFractionalSeconds) {
|
||||
this.timeZone = timeZone;
|
||||
this.showFractionalSeconds = showFractionalSeconds;
|
||||
}
|
||||
private final TimeZone timeZone;
|
||||
private final boolean showFractionalSeconds;
|
||||
|
||||
TimeZone getTimeZone() {
|
||||
return timeZone;
|
||||
}
|
||||
DatePolicy(TimeZone timeZone, boolean showFractionalSeconds)
|
||||
{
|
||||
this.timeZone = timeZone;
|
||||
this.showFractionalSeconds = showFractionalSeconds;
|
||||
}
|
||||
|
||||
boolean isShowFractionalSeconds() {
|
||||
return showFractionalSeconds;
|
||||
}
|
||||
TimeZone getTimeZone()
|
||||
{
|
||||
return timeZone;
|
||||
}
|
||||
|
||||
boolean isShowFractionalSeconds()
|
||||
{
|
||||
return showFractionalSeconds;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user