Skip to content

Commit 3e025c4

Browse files
authored
fix: Change IterableAsyncQueue to public access modifier
1 parent 192a6f2 commit 3e025c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/shared/common/src/main/java/com/launchdarkly/sdk/collections/IterableAsyncQueue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*
1818
* @param <T> the type of elements held in this queue
1919
*/
20-
class IterableAsyncQueue<T> {
20+
public class IterableAsyncQueue<T> {
2121
private final Object lock = new Object();
2222
private final LinkedList<T> queue = new LinkedList<>();
2323

0 commit comments

Comments
 (0)