Skip to content

Commit

Permalink
#1856 DMR traffic channel thread dead-lock. Removing synchronized met…
Browse files Browse the repository at this point in the history
…hod access since content access is already protected by the reentrant lock. The synchronized method is redundant and also causing the dead-lock. (#1857)

Co-authored-by: Dennis Sheirer <dsheirer@github.com>
  • Loading branch information
DSheirer and Dennis Sheirer committed Feb 13, 2024
1 parent ca2509e commit f5938fa
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -805,7 +805,7 @@ else if(!decodeEvent2.getDetails().endsWith(CHANNEL_START_REJECTED))
* @param channelEvent to process
*/
@Override
public synchronized void receive(ChannelEvent channelEvent)
public void receive(ChannelEvent channelEvent)
{
Channel channel = channelEvent.getChannel();

Expand Down

0 comments on commit f5938fa

Please sign in to comment.