Selaa lähdekoodia

[spotbugs] Fix incorrect lazy initialization in SystemReader

This fixes two warnings of type LI_LAZY_INIT_STATIC.

Change-Id: I26a7a48aed9d0a0547e908a56b7014a7620fadd8
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v5.11.0.202102031030-m2
Matthias Sohn 3 vuotta sitten
vanhempi
commit
3482e50134
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2
    2
      org.eclipse.jgit/src/org/eclipse/jgit/util/SystemReader.java

+ 2
- 2
org.eclipse.jgit/src/org/eclipse/jgit/util/SystemReader.java Näytä tiedosto

@@ -56,9 +56,9 @@ public abstract class SystemReader {

private static final SystemReader DEFAULT;

private static Boolean isMacOS;
private static volatile Boolean isMacOS;

private static Boolean isWindows;
private static volatile Boolean isWindows;

static {
SystemReader r = new Default();

Loading…
Peruuta
Tallenna