소스 검색

Fix stupid broken error message.

pull/696/head
Chris Smith 8 년 전
부모
커밋
51a541c99d
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1
    2
      src/main/java/com/dmdirc/util/LogUtils.java

+ 1
- 2
src/main/java/com/dmdirc/util/LogUtils.java 파일 보기

133
             }
133
             }
134
 
134
 
135
             if (throwable == null) {
135
             if (throwable == null) {
136
-                throw new ReflectiveOperationException("Unable to find ctor of "
137
-                        + clazz.getClass());
136
+                throw new ReflectiveOperationException("Unable to find ctor of " + clazz);
138
             }
137
             }
139
         }
138
         }
140
         throwable.setStackTrace(getStackTraceElements(proxy.getStackTraceElementProxyArray()));
139
         throwable.setStackTrace(getStackTraceElements(proxy.getStackTraceElementProxyArray()));

Loading…
취소
저장