We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80838a5 commit 0eb5ce7Copy full SHA for 0eb5ce7
src/main/java/org/junit/runner/Result.java
@@ -188,7 +188,7 @@ public SerializedForm(Result result) {
188
}
189
190
@SuppressWarnings("unchecked")
191
- private SerializedForm(ObjectInputStream.GetField fields) throws IOException {
+ private SerializedForm(ObjectInputStream.GetField fields) throws IOException, ClassNotFoundException {
192
fCount = (AtomicInteger) fields.get("fCount", null);
193
fIgnoreCount = (AtomicInteger) fields.get("fIgnoreCount", null);
194
assumptionFailureCount = (AtomicInteger) fields.get("assumptionFailureCount", null);
0 commit comments