Skip to content

Commit

Permalink
Remove unneeded null check
Browse files Browse the repository at this point in the history
Check already exists inside called method
  • Loading branch information
ash2k committed Sep 22, 2013
1 parent 0ab1693 commit a23e904
Showing 1 changed file with 1 addition and 3 deletions.
Expand Up @@ -21,9 +21,7 @@ public class ExtendedThrowableProxyConverter extends ThrowableProxyConverter {

@Override
protected void extraData(StringBuilder builder, StackTraceElementProxy step) {
if (step != null) {
ThrowableProxyUtil.subjoinPackagingData(builder, step);
}
ThrowableProxyUtil.subjoinPackagingData(builder, step);
}

protected void prepareLoggingEvent(ILoggingEvent event) {
Expand Down

0 comments on commit a23e904

Please sign in to comment.