Skip to content

Commit

Permalink
LPD-39192 SF
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Dec 6, 2024
1 parent e795bf9 commit aa5ff49
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,8 @@ public void testToDTO() throws Exception {
StringBuilder sb = new StringBuilder();

for (Locale locale : originalAvailableLocales) {
sb.append(
locale.toString()
).append(
","
);
sb.append(locale.toString());
sb.append(",");
}

_companyLocalService.updatePreferences(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,8 @@ public void testToDTO() throws Exception {
StringBuilder sb = new StringBuilder();

for (Locale locale : originalAvailableLocales) {
sb.append(
locale.toString()
).append(
","
);
sb.append(locale.toString());
sb.append(",");
}

_companyLocalService.updatePreferences(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,8 @@ public void testToDTO() throws Exception {
StringBuilder sb = new StringBuilder();

for (Locale locale : originalAvailableLocales) {
sb.append(
locale.toString()
).append(
","
);
sb.append(locale.toString());
sb.append(",");
}

_companyLocalService.updatePreferences(
Expand Down

0 comments on commit aa5ff49

Please sign in to comment.