getStatus().divider = "";
}
private void renderHashedPassword(String name, String cssClass, String cssStyle, Object singleValue, String tagContent, String disabled) {
String formattedValue = new TagOutputFormatter(getTMLContext()).format(singleValue);
// if there we got a value from source, the value is already hashed
// register field on form to ensure not to hash twice
if (formattedValue != null && !formattedValue.trim().equals("")) {
FormStatus formBase = (FormStatus) getStatus().getAncestorTag(FormBase.class);
formBase.registerHashedPasswordField(name, formattedValue);