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 11/*
2- * Copyright 2002-2015 the original author or authors.
2+ * Copyright 2002-2017 the original author or authors.
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
2828 */
2929public final class NullValue implements Serializable {
3030
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 ();
3238
3339 private static final long serialVersionUID = 1L ;
3440
You can’t perform that action at this time.
0 commit comments