|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2014, 2022, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
@@ -65,44 +65,53 @@ public static void remove(Class<?> clz) {
|
65 | 65 |
|
66 | 66 | private final Object mutex = new Object();
|
67 | 67 | private final Class<?> type;
|
68 |
| - private List<Method> methods; |
69 |
| - private Map<String,PropertyInfo> properties; |
70 |
| - private Map<String,EventSetInfo> eventSets; |
| 68 | + private volatile List<Method> methods; |
| 69 | + private volatile Map<String,PropertyInfo> properties; |
| 70 | + private volatile Map<String,EventSetInfo> eventSets; |
71 | 71 |
|
72 | 72 | private ClassInfo(Class<?> type) {
|
73 | 73 | this.type = type;
|
74 | 74 | }
|
75 | 75 |
|
76 | 76 | public List<Method> getMethods() {
|
77 |
| - if (this.methods == null) { |
| 77 | + List<Method> methods = this.methods; |
| 78 | + if (methods == null) { |
78 | 79 | synchronized (this.mutex) {
|
79 |
| - if (this.methods == null) { |
80 |
| - this.methods = MethodInfo.get(this.type); |
| 80 | + methods = this.methods; |
| 81 | + if (methods == null) { |
| 82 | + methods = MethodInfo.get(this.type); |
| 83 | + this.methods = methods; |
81 | 84 | }
|
82 | 85 | }
|
83 | 86 | }
|
84 |
| - return this.methods; |
| 87 | + return methods; |
85 | 88 | }
|
86 | 89 |
|
87 | 90 | public Map<String,PropertyInfo> getProperties() {
|
88 |
| - if (this.properties == null) { |
| 91 | + Map<String, PropertyInfo> properties = this.properties; |
| 92 | + if (properties == null) { |
89 | 93 | synchronized (this.mutex) {
|
90 |
| - if (this.properties == null) { |
91 |
| - this.properties = PropertyInfo.get(this.type); |
| 94 | + properties = this.properties; |
| 95 | + if (properties == null) { |
| 96 | + properties = PropertyInfo.get(this.type); |
| 97 | + this.properties = properties; |
92 | 98 | }
|
93 | 99 | }
|
94 | 100 | }
|
95 |
| - return this.properties; |
| 101 | + return properties; |
96 | 102 | }
|
97 | 103 |
|
98 | 104 | public Map<String,EventSetInfo> getEventSets() {
|
99 |
| - if (this.eventSets == null) { |
| 105 | + Map<String, EventSetInfo> eventSets = this.eventSets; |
| 106 | + if (eventSets == null) { |
100 | 107 | synchronized (this.mutex) {
|
101 |
| - if (this.eventSets == null) { |
102 |
| - this.eventSets = EventSetInfo.get(this.type); |
| 108 | + eventSets = this.eventSets; |
| 109 | + if (eventSets == null) { |
| 110 | + eventSets = EventSetInfo.get(this.type); |
| 111 | + this.eventSets = eventSets; |
103 | 112 | }
|
104 | 113 | }
|
105 | 114 | }
|
106 |
| - return this.eventSets; |
| 115 | + return eventSets; |
107 | 116 | }
|
108 | 117 | }
|
0 commit comments