in gflog-core/src/main/java/com/epam/deltix/gflog/core/layout/template/FastDateFormat.java [332:342]
public boolean equals(final Object obj) {
if (!(obj instanceof FastDateFormat)) {
return false;
}
final FastDateFormat other = (FastDateFormat) obj;
return Objects.equals(mPattern, other.mPattern) &&
Objects.equals(mTimeZone, other.mTimeZone) &&
Objects.equals(mLocale, other.mLocale) &&
(mTimeZoneForced == other.mTimeZoneForced) &&
(mLocaleForced == other.mLocaleForced);
}