On Thu, 22 Feb 2024 17:16:42 GMT, n-gabe wrote:
> There is a ConcurrentModificationException in MediaPlayer when removing a
> MediaView from it. The root cause is that you can't iterate over a HashSet
> with for (WeakReference vref : viewRefs) and removing items from
>
On Mon, 22 Apr 2024 15:05:07 GMT, n-gabe wrote:
>> There is a ConcurrentModificationException in MediaPlayer when removing a
>> MediaView from it. The root cause is that you can't iterate over a HashSet
>> with for (WeakReference vref : viewRefs) and removing items fro
On Mon, 22 Apr 2024 13:52:39 GMT, Kevin Rushforth wrote:
>> n-gabe has updated the pull request incrementally with one additional commit
>> since the last revision:
>>
>> Update Copyright
>
> modules/javafx.media/src/main/java/javafx/scene/media/MediaPlayer
> There is a ConcurrentModificationException in MediaPlayer when removing a
> MediaView from it. The root cause is that you can't iterate over a HashSet
> with for (WeakReference vref : viewRefs) and removing items from
> the collection by viewRefs.remove(vref); within this
On Thu, 22 Feb 2024 17:16:42 GMT, n-gabe wrote:
> There is a ConcurrentModificationException in MediaPlayer when removing a
> MediaView from it. The root cause is that you can't iterate over a HashSet
> with for (WeakReference vref : viewRefs) and removing items from
>
> There is a ConcurrentModificationException in MediaPlayer when removing a
> MediaView from it. The root cause is that you can't iterate over a HashSet
> with for (WeakReference vref : viewRefs) and removing items from
> the collection by viewRefs.remove(vref); within this
On Thu, 22 Feb 2024 17:16:42 GMT, n-gabe wrote:
> There is a ConcurrentModificationException in MediaPlayer when removing a
> MediaView from it. The root cause is that you can't iterate over a HashSet
> with for (WeakReference vref : viewRefs) and removing items from
>
There is a ConcurrentModificationException in MediaPlayer when removing a
MediaView from it. The root cause is that you can't iterate over a HashSet with
for (WeakReference vref : viewRefs) and removing items from the
collection by viewRefs.remove(vref); within this loop.
-
Commit