correctly assign barCode to BarCodeReadEvent

This commit is contained in:
seblau 2018-01-26 15:41:03 +01:00
parent f63ccf1ee3
commit 612b3bfe9a

View File

@ -24,7 +24,7 @@ public class BarCodeReadEvent extends Event<BarCodeReadEvent> {
if (event == null) { if (event == null) {
event = new BarCodeReadEvent(); event = new BarCodeReadEvent();
} }
event.init(viewTag); event.init(viewTag, barCode);
return event; return event;
} }