Skip to content

Commit c611a81

Browse files
Fix bug in "duplicate" in Parametric Remote table. Resolves #544.
1 parent e7666f1 commit c611a81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/harctoolbox/irscrutinizer/ParametrizedIrSignal.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ private static String formatMiscParams(Map<String, Long> params) {
8383
}
8484

8585
ParametrizedIrSignal(ParametrizedIrSignal old) {
86-
this(old.getProtocol(), old.parameters, old.getName(), old.getComment());
86+
this(old.getProtocol(), new HashMap<String, Long>(old.parameters), old.getName(), old.getComment());
8787
}
8888

8989
ParametrizedIrSignal(String protocolName, long device, long subdevice, long function, String name, String comment) {

0 commit comments

Comments
 (0)