File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
spring-context/src/main/java/org/springframework/cache/support Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2015 the original author or authors.
2
+ * Copyright 2002-2017 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
28
28
*/
29
29
public final class NullValue implements Serializable {
30
30
31
- static final Object INSTANCE = new NullValue ();
31
+ /**
32
+ * The canonical representation of a {@code null} replacement, as used by the
33
+ * default implementation of {@link AbstractValueAdaptingCache#toStoreValue}/
34
+ * {@link AbstractValueAdaptingCache#fromStoreValue}.
35
+ * @since 4.3.10
36
+ */
37
+ public static final Object INSTANCE = new NullValue ();
32
38
33
39
private static final long serialVersionUID = 1L ;
34
40
You can’t perform that action at this time.
0 commit comments