1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-09 00:00:01 +01:00

remove obsolete event handler

This commit is contained in:
Steffen Vogel 2018-06-09 15:00:02 +02:00
parent c3469f50c5
commit cd37fbc9aa

View file

@ -106,7 +106,6 @@ class SimulationDataStore extends ReduceStore {
return state;
case 'simulatorData/inputChanged':
// find simulator in node array
if (state[action.simulator] == null || state[action.simulator].input == null) {
return state;
}
@ -120,18 +119,6 @@ class SimulationDataStore extends ReduceStore {
return state;
case 'simulatorData/closed':
// close and delete socket
if (state[action.node] != null) {
// delete data
//delete state[action.identifier];
//state[action.identifier] = null;
//this.__emitChange();
}
return state;
default:
return state;
}