minor tweaks...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2020-04-27 16:42:15 +03:00
parent 40ecbd8970
commit c619972c43

View File

@ -318,8 +318,7 @@ object.Constructor('FeatureSet', {
return Object.keys(this) return Object.keys(this)
.filter(function(e){ .filter(function(e){
return e != 'features' return e != 'features'
&& that[e] instanceof Feature }) && that[e] instanceof Feature }) },
},
// build exclusive groups... // build exclusive groups...
// //
@ -1120,10 +1119,7 @@ object.Constructor('FeatureSet', {
lst.forEach(function(n){ lst.forEach(function(n){
if(that[n] != null){ if(that[n] != null){
console.log('Removing feature:', n) console.log('Removing feature:', n)
that[n].remove(obj) that[n].remove(obj) } }) },
}
})
},
// Generate a Graphviz graph from features... // Generate a Graphviz graph from features...
@ -1149,7 +1145,6 @@ object.Constructor('FeatureSet', {
return graph return graph
}, },
}) })