File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/main/java/com/github/omribromberg/elasticsearch/datemath/formatter Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -49,11 +49,11 @@ public enum FieldSymbol {
49
49
private static final Collection <FieldSymbol > SECONDS = Collections .singletonList (s );
50
50
51
51
private final TemporalField field ;
52
- private final Supplier <Collection <FieldSymbol >> dependenciesSuplier ;
52
+ private final Supplier <Collection <FieldSymbol >> dependenciesSupplier ;
53
53
54
- FieldSymbol (TemporalField field , Supplier <Collection <FieldSymbol >> dependenciesSuplier ) {
54
+ FieldSymbol (TemporalField field , Supplier <Collection <FieldSymbol >> dependenciesSupplier ) {
55
55
this .field = field ;
56
- this .dependenciesSuplier = dependenciesSuplier ;
56
+ this .dependenciesSupplier = dependenciesSupplier ;
57
57
}
58
58
59
59
public static FieldSymbol of (char symbol ) {
@@ -97,10 +97,10 @@ private static Collection<FieldSymbol> SECONDS() {
97
97
}
98
98
99
99
public boolean checkDependencies (Collection <FieldSymbol > fields ) {
100
- if (Objects .isNull (dependenciesSuplier ))
100
+ if (Objects .isNull (dependenciesSupplier ))
101
101
return true ;
102
102
103
- final Collection <FieldSymbol > dependencies = dependenciesSuplier .get ();
103
+ final Collection <FieldSymbol > dependencies = dependenciesSupplier .get ();
104
104
105
105
if (Objects .isNull (dependencies ))
106
106
return true ;
You can’t perform that action at this time.
0 commit comments