removed misleading "throws IllegalStateException" declaration

Issue: SPR-9561
This commit is contained in:
Juergen Hoeller
2012-07-04 23:33:15 +02:00
parent aeef8c87f6
commit b488ae6009

View File

@@ -170,7 +170,7 @@ public abstract class AbstractResource implements Resource {
* This implementation always returns <code>null</code>,
* assuming that this resource type does not have a filename.
*/
public String getFilename() throws IllegalStateException {
public String getFilename() {
return null;
}