From dfda4c32d53104b0f11aa1986a696b52aff6cdaf Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Sun, 2 Oct 2011 19:45:52 +0000 Subject: [PATCH] Fix error in AbstractResource#contentLength Javadoc Issue: SPR-8734 --- .../java/org/springframework/core/io/AbstractResource.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.springframework.core/src/main/java/org/springframework/core/io/AbstractResource.java b/org.springframework.core/src/main/java/org/springframework/core/io/AbstractResource.java index fd5b62f932c..a6b06ab7bb6 100644 --- a/org.springframework.core/src/main/java/org/springframework/core/io/AbstractResource.java +++ b/org.springframework.core/src/main/java/org/springframework/core/io/AbstractResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2002-2011 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -108,7 +108,7 @@ public abstract class AbstractResource implements Resource { } /** - * This implementation checks the timestamp of the underlying File, + * This implementation checks the length of the underlying File, * if available. * @see #getFile() */