Skip to content

Commit

Permalink
Merge pull request #696 from csmith/master
Browse files Browse the repository at this point in the history
Fix stupid broken error message.
  • Loading branch information
greboid committed Jul 4, 2016
2 parents ab3b103 + 51a541c commit 9bb25db
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/com/dmdirc/util/LogUtils.java
Expand Up @@ -133,8 +133,7 @@ public static Throwable getThrowable(@Nonnull final IThrowableProxy proxy)
}

if (throwable == null) {
throw new ReflectiveOperationException("Unable to find ctor of "
+ clazz.getClass());
throw new ReflectiveOperationException("Unable to find ctor of " + clazz);
}
}
throwable.setStackTrace(getStackTraceElements(proxy.getStackTraceElementProxyArray()));
Expand Down

0 comments on commit 9bb25db

Please sign in to comment.