Skip to content

Commit f5938fa

Browse files
DSheirerDennis Sheirer
andauthored
#1856 DMR traffic channel thread dead-lock. Removing synchronized method 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 <[email protected]>
1 parent ca2509e commit f5938fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/github/dsheirer/module/decode/dmr/DMRTrafficChannelManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ else if(!decodeEvent2.getDetails().endsWith(CHANNEL_START_REJECTED))
805805
* @param channelEvent to process
806806
*/
807807
@Override
808-
public synchronized void receive(ChannelEvent channelEvent)
808+
public void receive(ChannelEvent channelEvent)
809809
{
810810
Channel channel = channelEvent.getChannel();
811811

0 commit comments

Comments
 (0)