Polishing

This commit is contained in:
Juergen Hoeller
2016-06-07 15:42:16 +02:00
parent 6807bcb863
commit 8c4bc3656b
48 changed files with 283 additions and 287 deletions

View File

@@ -27,6 +27,7 @@ import java.util.concurrent.Callable;
*
* @author Costin Leau
* @author Juergen Hoeller
* @author Stephane Nicoll
* @since 3.1
*/
public interface Cache {
@@ -164,7 +165,7 @@ public interface Cache {
private final Object key;
public ValueRetrievalException(Object key, Callable<?> loader, Throwable ex) {
super(String.format("Value for key '%s' could not " + "be loaded using '%s'", key, loader), ex);
super(String.format("Value for key '%s' could not be loaded using '%s'", key, loader), ex);
this.key = key;
}