@@ -27,7 +27,7 @@ public class SimpleThemeVariables implements Buildable<SimpleThemeVariables> {
27
27
28
28
public String alertFontColor ;
29
29
30
- public String backgroundImageUrl ;
30
+ public String backgroundImageURL ;
31
31
32
32
public String backgroundSize ;
33
33
@@ -69,7 +69,7 @@ public class SimpleThemeVariables implements Buildable<SimpleThemeVariables> {
69
69
70
70
public String logoImageSize ;
71
71
72
- public String logoImageUrl ;
72
+ public String logoImageURL ;
73
73
74
74
public String monoFontColor ;
75
75
@@ -98,7 +98,7 @@ public boolean equals(Object o) {
98
98
SimpleThemeVariables that = (SimpleThemeVariables ) o ;
99
99
return Objects .equals (alertBackgroundColor , that .alertBackgroundColor ) &&
100
100
Objects .equals (alertFontColor , that .alertFontColor ) &&
101
- Objects .equals (backgroundImageUrl , that .backgroundImageUrl ) &&
101
+ Objects .equals (backgroundImageURL , that .backgroundImageURL ) &&
102
102
Objects .equals (backgroundSize , that .backgroundSize ) &&
103
103
Objects .equals (borderRadius , that .borderRadius ) &&
104
104
Objects .equals (deleteButtonColor , that .deleteButtonColor ) &&
@@ -119,7 +119,7 @@ public boolean equals(Object o) {
119
119
Objects .equals (linkTextColor , that .linkTextColor ) &&
120
120
Objects .equals (linkTextFocusColor , that .linkTextFocusColor ) &&
121
121
Objects .equals (logoImageSize , that .logoImageSize ) &&
122
- Objects .equals (logoImageUrl , that .logoImageUrl ) &&
122
+ Objects .equals (logoImageURL , that .logoImageURL ) &&
123
123
Objects .equals (monoFontColor , that .monoFontColor ) &&
124
124
Objects .equals (monoFontFamily , that .monoFontFamily ) &&
125
125
Objects .equals (pageBackgroundColor , that .pageBackgroundColor ) &&
@@ -132,10 +132,10 @@ public boolean equals(Object o) {
132
132
133
133
@ Override
134
134
public int hashCode () {
135
- return Objects .hash (alertBackgroundColor , alertFontColor , backgroundImageUrl , backgroundSize , borderRadius , deleteButtonColor ,
135
+ return Objects .hash (alertBackgroundColor , alertFontColor , backgroundImageURL , backgroundSize , borderRadius , deleteButtonColor ,
136
136
deleteButtonTextColor , deleteButtonTextFocusColor , deleteButtonFocusColor , errorFontColor , errorIconColor , fontColor , fontFamily ,
137
137
footerDisplay , iconBackgroundColor , iconColor , infoIconColor , inputBackgroundColor , inputIconColor , inputTextColor , linkTextColor ,
138
- linkTextFocusColor , logoImageSize , logoImageUrl , monoFontColor , monoFontFamily , pageBackgroundColor ,
138
+ linkTextFocusColor , logoImageSize , logoImageURL , monoFontColor , monoFontFamily , pageBackgroundColor ,
139
139
panelBackgroundColor , primaryButtonColor , primaryButtonFocusColor , primaryButtonTextColor , primaryButtonTextFocusColor );
140
140
}
141
141
}
0 commit comments