Updating BatchListener Unit Tests

resolves #211
 Please enter the commit message for your changes. Lines starting
This commit is contained in:
Glenn Renfro
2016-09-19 14:55:52 -04:00
committed by Michael Minella
parent d657b22b79
commit 2bfc4780c7
12 changed files with 941 additions and 82 deletions

View File

@@ -270,15 +270,6 @@ public class JobExecutionEvent extends Entity {
return new ArrayList<>(allExceptions);
}
/**
* Deserialize and ensure transient fields are re-instantiated when read
* back
*/
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
stream.defaultReadObject();
this.failureExceptions = new ArrayList<>();
}
/*
* (non-Javadoc)
*

View File

@@ -417,15 +417,6 @@ public class StepExecutionEvent extends Entity {
&& getId().equals(other.getId());
}
/**
* Deserialize and ensure transient fields are re-instantiated when read
* back
*/
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
stream.defaultReadObject();
this.failureExceptions = new ArrayList<>();
}
/*
* (non-Javadoc)
*