Remove call to printStackTrace() in test code. #1555

Fixes `ThrowablePrintStackTrace` inspection violations in test code.

Description:
>Reports any calls to Throwable.printStackTrace() without arguments. Such statements are often used for temporary debugging, and should probably be either removed from production code, or replaced with a more robust logging facility.
This commit is contained in:
Michal Kordas 2015-08-20 18:17:15 +02:00 committed by Roman Ivanov
parent b543f32fd7
commit 885fca8fe9
1 changed files with 0 additions and 1 deletions

View File

@ -345,7 +345,6 @@ public class CustomImportOrderCheckTest extends BaseCheckTestSupport {
actual = method.invoke(t, (DetailAST) null);
}
catch (Exception e) {
e.printStackTrace();
actual = null;
}