Use spaces instead of tabs to indent code

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1479783 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-05-07 07:05:20 +00:00
parent 2154d86415
commit 8ef33a43ec
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public class ContextedRuntimeExceptionTest extends AbstractExceptionContextTest<
@Test
public void testContextedExceptionStringThrowableContext() {
// Use an anonymous subclass to make sure users can provide custom implementations
// Use an anonymous subclass to make sure users can provide custom implementations
exceptionContext = new ContextedRuntimeException(TEST_MESSAGE_2, new Exception(TEST_MESSAGE), new DefaultExceptionContext() {});
final String message = exceptionContext.getMessage();
final String trace = ExceptionUtils.getStackTrace(exceptionContext);