You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sb.append("This page is designed to inspect all registered container scoped tables and report any tables with duplicate keys in the same container. This should be enforced by the user schema; however, direct DB inserts will bypass this check.<p>");
450
-
sb.append(StringUtils.join(messages, "<br>"));
448
+
Stringsb = "This page is designed to inspect all registered container scoped tables and report any tables with duplicate keys in the same container. This should be enforced by the user schema; however, direct DB inserts will bypass this check.<p>" +
449
+
StringUtils.join(messages, "<br>");
451
450
452
-
returnnewHtmlView(sb.toString());
451
+
returnnewHtmlView(sb);
453
452
}
454
453
455
454
@Override
@@ -914,11 +913,10 @@ public ModelAndView getConfirmView(MoveWorkbookForm form, BindException errors)
914
913
returnnewSimpleErrorView(errors);
915
914
}
916
915
917
-
StringBuildersb = newStringBuilder();
918
-
sb.append("This will move this workbook to the selected folder, renaming this workbook to match the series in that container. Note: there are many reasons this can be problematic, so please do this with great care<p>");
Stringsb = "This will move this workbook to the selected folder, renaming this workbook to match the series in that container. Note: there are many reasons this can be problematic, so please do this with great care<p>" +
0 commit comments