Skip to content

Commit ca0af94

Browse files
committed
AA-231 minor fix due to some problems with using concurrenthashmaps on
Android. I am noting the following so i can create the release tag in the future 0.9.127beta_AA-230 (ShimmerDriver) 0.9.39beta_AA-230 (ShimmerBluetoothManager)
1 parent 821a0bd commit ca0af94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ShimmerDriver/src/main/java/com/shimmerresearch/driverUtilities/SensorDetails.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class SensorDetails implements Serializable{
2020
private static final long serialVersionUID = 1545530433767674139L;
2121

2222
/** by default load in communication types for Bluetooth and SD */
23-
public ConcurrentHashMap<COMMUNICATION_TYPE, Boolean> mapOfIsEnabledPerCommsType = new ConcurrentHashMap<COMMUNICATION_TYPE, Boolean>();
23+
public Map<COMMUNICATION_TYPE, Boolean> mapOfIsEnabledPerCommsType = new ConcurrentHashMap<COMMUNICATION_TYPE, Boolean>();
2424
{
2525
mapOfIsEnabledPerCommsType.put(COMMUNICATION_TYPE.BLUETOOTH, false);
2626
mapOfIsEnabledPerCommsType.put(COMMUNICATION_TYPE.SD, false);

0 commit comments

Comments
 (0)