aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/commons/lang3/exception/DefaultExceptionContext.java
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2011-09-15 00:00:47 +0200
committerSamuel Tardieu <sam@rfc1149.net>2011-09-15 00:00:47 +0200
commitf43c74c63c80943fcad75687121f4bd4b649c48f (patch)
tree802f93ff6914b54cdaeba0df35fc8bb7d5dd4498 /src/org/apache/commons/lang3/exception/DefaultExceptionContext.java
parentfeda5dd2abefe921b11e492996e9701ffdac0d4b (diff)
downloadcgeo-f43c74c63c80943fcad75687121f4bd4b649c48f.zip
cgeo-f43c74c63c80943fcad75687121f4bd4b649c48f.tar.gz
cgeo-f43c74c63c80943fcad75687121f4bd4b649c48f.tar.bz2
Remove trailing whitespace in Javadoc strings
Diffstat (limited to 'src/org/apache/commons/lang3/exception/DefaultExceptionContext.java')
-rw-r--r--src/org/apache/commons/lang3/exception/DefaultExceptionContext.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/org/apache/commons/lang3/exception/DefaultExceptionContext.java b/src/org/apache/commons/lang3/exception/DefaultExceptionContext.java
index fc5dc52..c6e2535 100644
--- a/src/org/apache/commons/lang3/exception/DefaultExceptionContext.java
+++ b/src/org/apache/commons/lang3/exception/DefaultExceptionContext.java
@@ -5,9 +5,9 @@
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -33,7 +33,7 @@ import org.apache.commons.lang3.tuple.Pair;
* This implementation is serializable, however this is dependent on the values that
* are added also being serializable.
* </p>
- *
+ *
* @see ContextedException
* @see ContextedRuntimeException
* @since 3.0
@@ -113,7 +113,7 @@ public class DefaultExceptionContext implements ExceptionContext, Serializable {
/**
* Builds the message containing the contextual information.
- *
+ *
* @param baseMessage the base exception message <b>without</b> context information appended
* @return the exception message <b>with</b> context information appended, never null
*/
@@ -122,13 +122,13 @@ public class DefaultExceptionContext implements ExceptionContext, Serializable {
if (baseMessage != null) {
buffer.append(baseMessage);
}
-
+
if (contextValues.size() > 0) {
if (buffer.length() > 0) {
buffer.append('\n');
}
buffer.append("Exception Context:\n");
-
+
int i = 0;
for (final Pair<String, Object> pair : contextValues) {
buffer.append("\t[");