Skip to content

Commit 80062a8

Browse files
committed
Client sync
1 parent 4ffaeab commit 80062a8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/java/io/fusionauth/domain/SimpleThemeVariables.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class SimpleThemeVariables implements Buildable<SimpleThemeVariables> {
2727

2828
public String alertFontColor;
2929

30-
public String backgroundImageUrl;
30+
public String backgroundImageURL;
3131

3232
public String backgroundSize;
3333

@@ -69,7 +69,7 @@ public class SimpleThemeVariables implements Buildable<SimpleThemeVariables> {
6969

7070
public String logoImageSize;
7171

72-
public String logoImageUrl;
72+
public String logoImageURL;
7373

7474
public String monoFontColor;
7575

@@ -98,7 +98,7 @@ public boolean equals(Object o) {
9898
SimpleThemeVariables that = (SimpleThemeVariables) o;
9999
return Objects.equals(alertBackgroundColor, that.alertBackgroundColor) &&
100100
Objects.equals(alertFontColor, that.alertFontColor) &&
101-
Objects.equals(backgroundImageUrl, that.backgroundImageUrl) &&
101+
Objects.equals(backgroundImageURL, that.backgroundImageURL) &&
102102
Objects.equals(backgroundSize, that.backgroundSize) &&
103103
Objects.equals(borderRadius, that.borderRadius) &&
104104
Objects.equals(deleteButtonColor, that.deleteButtonColor) &&
@@ -119,7 +119,7 @@ public boolean equals(Object o) {
119119
Objects.equals(linkTextColor, that.linkTextColor) &&
120120
Objects.equals(linkTextFocusColor, that.linkTextFocusColor) &&
121121
Objects.equals(logoImageSize, that.logoImageSize) &&
122-
Objects.equals(logoImageUrl, that.logoImageUrl) &&
122+
Objects.equals(logoImageURL, that.logoImageURL) &&
123123
Objects.equals(monoFontColor, that.monoFontColor) &&
124124
Objects.equals(monoFontFamily, that.monoFontFamily) &&
125125
Objects.equals(pageBackgroundColor, that.pageBackgroundColor) &&
@@ -132,10 +132,10 @@ public boolean equals(Object o) {
132132

133133
@Override
134134
public int hashCode() {
135-
return Objects.hash(alertBackgroundColor, alertFontColor, backgroundImageUrl, backgroundSize, borderRadius, deleteButtonColor,
135+
return Objects.hash(alertBackgroundColor, alertFontColor, backgroundImageURL, backgroundSize, borderRadius, deleteButtonColor,
136136
deleteButtonTextColor, deleteButtonTextFocusColor, deleteButtonFocusColor, errorFontColor, errorIconColor, fontColor, fontFamily,
137137
footerDisplay, iconBackgroundColor, iconColor, infoIconColor, inputBackgroundColor, inputIconColor, inputTextColor, linkTextColor,
138-
linkTextFocusColor, logoImageSize, logoImageUrl, monoFontColor, monoFontFamily, pageBackgroundColor,
138+
linkTextFocusColor, logoImageSize, logoImageURL, monoFontColor, monoFontFamily, pageBackgroundColor,
139139
panelBackgroundColor, primaryButtonColor, primaryButtonFocusColor, primaryButtonTextColor, primaryButtonTextFocusColor);
140140
}
141141
}

0 commit comments

Comments
 (0)