Merge "Fix thread-shared field evades lock acquisition reported by Coverity"
This commit is contained in:
@@ -1196,13 +1196,11 @@ public class Typeface {
|
||||
|
||||
/** @hide */
|
||||
public boolean isSupportedAxes(int axis) {
|
||||
if (mSupportedAxes == null) {
|
||||
synchronized (this) {
|
||||
synchronized (this) {
|
||||
if (mSupportedAxes == null) {
|
||||
mSupportedAxes = nativeGetSupportedAxes(native_instance);
|
||||
if (mSupportedAxes == null) {
|
||||
mSupportedAxes = nativeGetSupportedAxes(native_instance);
|
||||
if (mSupportedAxes == null) {
|
||||
mSupportedAxes = EMPTY_AXES;
|
||||
}
|
||||
mSupportedAxes = EMPTY_AXES;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user