We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2128da9 commit 1ffbfc7Copy full SHA for 1ffbfc7
javasdk/NRSDK/src/com/neuronrobotics/sdk/dyio/DyIOChannel.java
@@ -323,8 +323,8 @@ protected void fireChannelEvent(DyIOChannelEvent e) {
323
Log.info("Value is not the same, last was: "+getPreviousValue()+" current: "+value);
324
}
325
setPreviousValue(value);
326
- for(IChannelEventListener l : listeners) {
327
- l.onChannelEvent(e);
+ for(int i=0;i<listeners.size();i++) {
+ listeners.get(i).onChannelEvent(e);
328
329
330
0 commit comments