This is an automated email from the ASF dual-hosted git repository.
cziegeler pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature-extension-apiregions.git
The following commit(s) were added to refs/heads/master by this push:
new 9b949fa Remove spurious volatile
9b949fa is described below
commit 9b949fac656929828a95841591a338f589570b36
Author: Carsten Ziegeler <[email protected]>
AuthorDate: Fri Dec 4 16:59:53 2020 +0100
Remove spurious volatile
---
.../org/apache/sling/feature/extension/apiregions/api/Deprecation.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/sling/feature/extension/apiregions/api/Deprecation.java
b/src/main/java/org/apache/sling/feature/extension/apiregions/api/Deprecation.java
index edbd80d..f1e2c9e 100644
---
a/src/main/java/org/apache/sling/feature/extension/apiregions/api/Deprecation.java
+++
b/src/main/java/org/apache/sling/feature/extension/apiregions/api/Deprecation.java
@@ -29,7 +29,7 @@ import java.util.Objects;
*/
public class Deprecation {
- private volatile DeprecationInfo packageInfo;
+ private DeprecationInfo packageInfo;
private final Map<String, DeprecationInfo> memberInfos = new
LinkedHashMap<>();