Upgrade to Spring 2.5.5
This commit is contained in:
@@ -188,6 +188,15 @@ public class StepExecutionResourceProxy extends StepExecutionListenerSupport imp
|
||||
return delegate.isReadable();
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.springframework.core.io.Resource#lastModified()
|
||||
*/
|
||||
public long lastModified() throws IOException {
|
||||
Assert.state(delegate != null, "The delegate resource has not been initialised. "
|
||||
+ "Remember to register this object as a StepListener.");
|
||||
return delegate.lastModified();
|
||||
}
|
||||
|
||||
/**
|
||||
* Public setter for the {@link JobParametersConverter} used to translate
|
||||
* {@link JobParameters} into {@link Properties}. Defaults to a
|
||||
|
||||
Reference in New Issue
Block a user