pull/3/head
Bertrik Sikken 2017-09-18 00:05:03 +02:00
rodzic 75e812a880
commit 109e43047b
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -24,7 +24,7 @@ public final class CayenneItem {
public CayenneItem(int channel, ECayenneItem type, Double[] values) {
this.channel = channel;
this.type = type;
this.values = values;
this.values = values.clone();
}
public int getChannel() {
@ -36,7 +36,7 @@ public final class CayenneItem {
}
public Double[] getValues() {
return values;
return values.clone();
}
public String[] format() {