Whitespace

This commit is contained in:
Gary Gregory 2024-07-25 08:54:59 -04:00
parent 64c73d02e0
commit 15503e82ec
1 changed files with 0 additions and 2 deletions

View File

@ -100,13 +100,11 @@ public class DefaultExceptionContext implements ExceptionContext, Serializable {
if (baseMessage != null) { if (baseMessage != null) {
buffer.append(baseMessage); buffer.append(baseMessage);
} }
if (!contextValues.isEmpty()) { if (!contextValues.isEmpty()) {
if (buffer.length() > 0) { if (buffer.length() > 0) {
buffer.append('\n'); buffer.append('\n');
} }
buffer.append("Exception Context:\n"); buffer.append("Exception Context:\n");
int i = 0; int i = 0;
for (final Pair<String, Object> pair : contextValues) { for (final Pair<String, Object> pair : contextValues) {
buffer.append("\t["); buffer.append("\t[");