sources/src/main/java/com/google/solutions/jitaccess/common/Lazy.java [120:133]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      this.initializer = initializer;
    }

    void reset() {
      this.cached.set(null);
    }

    @Override
    public boolean isDone() {
      return this.cached.get() != null;
    }

    @Override
    public @NotNull T get() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



sources/src/main/java/com/google/solutions/jitaccess/common/Lazy.java [178:191]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      this.initializer = initializer;
    }

    void reset() {
      this.cached.set(null);
    }

    @Override
    public boolean isDone() {
      return this.cached.get() != null;
    }

    @Override
    public @NotNull T get() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



