Skip to content

Commit

Permalink
[FIXED JENKINS-20482] deserialized transient file2Path is null
Browse files Browse the repository at this point in the history
  • Loading branch information
ndeloof committed Aug 4, 2014
1 parent 17f36c7 commit 9a60c1a
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -63,6 +63,12 @@ public CleanTempFilesAction(String tempfile) {
this.explicitTempFiles.add(tempfile);
}

private Object readResolve() {
this.file2Path = Collections.<ManagedFile, FilePath> emptyMap();
this.explicitTempFiles = Collections.emptyList();
return this;
}

/**
* @Override
*/
Expand Down

0 comments on commit 9a60c1a

Please sign in to comment.