File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public abstract class AbstractLazyInitializer<T> {
2727
private volatile Exception error;
2828

2929
/** Returns an initialized instance of T. */
30-
T get() throws Exception {
30+
public T get() throws Exception {
3131
// First check without a lock to improve performance.
3232
if (!initialized) {
3333
synchronized (lock) {

0 commit comments

Comments
 (0)