Skip to content

Commit 88c4ae0

Browse files
authored
fix: Change IterableAsyncQueue to public access modifier (#122)
<!-- CURSOR_SUMMARY --> > [!NOTE] > **Low Risk** > Single visibility change with no functional logic changes; main risk is expanding the supported public API surface. > > **Overview** > Makes `IterableAsyncQueue` in `lib/shared/common` publicly accessible by changing the class access modifier from package-private to `public`, enabling reuse by other packages/modules without code changes to its behavior. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 3e025c4. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 192a6f2 commit 88c4ae0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)